Skip to content

Commit

Permalink
moving project meta and packages search to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ye11owSub authored and ye11owSub committed May 20, 2024
1 parent fbfda4a commit c9b7877
Show file tree
Hide file tree
Showing 2 changed files with 553 additions and 641 deletions.
36 changes: 36 additions & 0 deletions pyproject.toml
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"

Loading

0 comments on commit c9b7877

Please sign in to comment.