-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
40 lines (34 loc) · 1.01 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
"""
spyrmsd
Python tool for symmetry-corrected RMSD
"""
from setuptools import find_packages, setup
short_description = __doc__.split("\n")
try:
with open("README.md", "r") as handle:
long_description = handle.read()
except Exception:
long_description = "\n".join(short_description[2:])
setup(
# Self-descriptive entries which should always be present
name="spyrmsd",
author="Rocco Meli",
author_email="rocco.meli@cscs.ch",
description=short_description[0],
long_description=long_description,
long_description_content_type="text/markdown",
version="0.9.0-dev",
license="MIT",
packages=find_packages(),
include_package_data=True,
url="https://spyrmsd.readthedocs.io",
install_requires=["numpy", "scipy", "rustworkx"],
extras_require={
"bib": ["duecredit"],
"rdkit": ["rdkit"],
"openbabel": ["openbabel"],
"networkx": ["networkx"],
},
platforms=["Linux", "Mac OS-X", "Unix", "Windows"],
python_requires=">=3.9",
)