-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moving project meta and packages search to pyproject.toml
- Loading branch information
ye11owSub
authored and
ye11owSub
committed
May 20, 2024
1 parent
fbfda4a
commit c9b7877
Showing
2 changed files
with
553 additions
and
641 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[project] | ||
name = "pymol" | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
license = {file = "LICENSE"} | ||
description = """ | ||
PyMOL is a Python-enhanced molecular graphics tool. | ||
It excels at 3D visualization of proteins, small molecules, density, | ||
surfaces, and trajectories. It also includes molecular editing, | ||
ray tracing, and movies. Open Source PyMOL is free to everyone! | ||
""" | ||
dynamic=["version"] | ||
authors = [ | ||
{name = "Schrodinger", email = "[email protected]"}, | ||
] | ||
|
||
[project.scripts] | ||
pymol = "pymol:__main__" | ||
|
||
[build-system] | ||
requires = ["setuptools>=61.0", "numpy>=1.26.4"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["modules"] | ||
|
||
[tool.setuptools.package-data] | ||
"pmg_qt" = ["forms/*.ui"] | ||
|
||
[project.urls] | ||
Homepage = "https://pymol.org" | ||
Documentation = "https://pymol.org/dokuwiki" | ||
Repository = "https://github.com/schrodinger/pymol-open-source" | ||
"Bug Tracker" = "https://github.com/schrodinger/pymol-open-source/issues" | ||
Changelog = "https://github.com/schrodinger/pymol-open-source/blob/master/ChangeLog" | ||
|
Oops, something went wrong.