-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathsetup.py
34 lines (26 loc) · 887 Bytes
/
setup.py
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
#!/usr/bin/env python
import os
import setuptools # type: ignore
__version__ = "1.5.1"
# Find the absolute path
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(here, "README.rst")) as f:
long_description = f.read()
short_description = (
"Calculate root-mean-square deviation (RMSD) between two "
"sets of cartesian coordinates (XYZ or PDB format), "
"using rotation (fx. Kabsch algorithm), "
"atom reordering (fx. Hungarian algorithm), "
"and axis reflections, resulting in the minimal RMSD."
)
setuptools.setup(
name="rmsd",
version=__version__,
url="https://github.com/charnley/rmsd",
python_requires=">=3.8",
install_requires=[],
packages=["rmsd"],
entry_points={"console_scripts": ["calculate_rmsd=rmsd.calculate_rmsd:main"]},
classifiers=[],
)