-
Notifications
You must be signed in to change notification settings - Fork 114
/
pyproject.toml
40 lines (32 loc) · 1 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "rmsd"
dynamic = ["version"]
authors = []
requires-python = ">=3.9"
readme="README.rst"
description="Calculate Root-mean-square deviation (RMSD) of two molecules, using rotation, in xyz or pdb format "
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Chemistry",
]
keywords = ["pdb", "atoms", "kabsch", "reordering", "rotation", "xyz", "rmsd"]
dependencies=["numpy", "scipy"]
[project.optional-dependencies]
qml = ["qmllib"]
[project.urls]
Homepage = "https://github.com/charnley/rmsd"
[options.packages.find]
where="."
[project.scripts]
calculate_rmsd = "rmsd.calculate_rmsd:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "rmsd.version.__version__"}