-
Notifications
You must be signed in to change notification settings - Fork 114
/
setup.py
33 lines (29 loc) · 917 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
"""
OpenChem -- Deep Learning toolkit for Computational Chemistry and Drug Design
"""
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup_attrs = {
'name': 'OpenChem',
'description': 'Deep Learning toolkit for Computational Chemistry and Drug Design with PyTorch backend',
'long_description': long_description,
'long_description_content_type': "text/markdown",
'url': 'https://github.com/Mariewelt/OpenChem',
'author': 'Mariewelt',
'author_email': '[email protected]',
'license': 'MIT',
'packages': find_packages(),
'include_package_data': True,
'use_scm_version': True,
'setup_requires': ['setuptools_scm'],
'install_requires': [
'tensorboard',
'networkx',
'tqdm',
'torchani'
],
'python_requires': ">=3.5",
'zip_safe': False
}
setup(**setup_attrs)