-
Notifications
You must be signed in to change notification settings - Fork 114
/
setup.py
48 lines (40 loc) · 1.31 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/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__,
maintainer="Jimmy Kromann",
maintainer_email="[email protected]",
description=short_description,
long_description=long_description,
url="https://github.com/charnley/rmsd",
license="BSD-2-Clause",
python_requires=">=3.8",
install_requires=[
"numpy",
"scipy",
],
packages=["rmsd"],
entry_points={"console_scripts": ["calculate_rmsd=rmsd.calculate_rmsd:main"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
],
)