forked from deepchem/deepchem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
81 lines (74 loc) · 2.61 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import sys
import time
from setuptools import setup, find_packages
if '--release' in sys.argv:
IS_RELEASE = True
sys.argv.remove('--release')
else:
# Build a nightly package by default.
IS_RELEASE = False
# Environment-specific dependencies.
extras = {
'jax': ['jax', 'jaxlib', 'dm-haiku', 'optax'],
'torch': ['torch', 'torchvision', 'pytorch-lightning', 'dgl', 'dgllife'],
'tensorflow': ['tensorflow', 'tensorflow_probability', 'tensorflow_addons'],
'dqc': ['dqc', 'xitorch', 'torch', 'pylibxc2']
}
# get the version from deepchem/__init__.py
def _get_version():
with open('deepchem/__init__.py') as fp:
for line in fp:
if line.startswith('__version__'):
g = {}
exec(line, g)
base = g['__version__']
if IS_RELEASE:
return base
else:
# nightly version : .devYearMonthDayHourMinute
if base.endswith('.dev') is False:
# Force to add `.dev` if `--release` option isn't passed when building
base += '.dev'
return base + time.strftime("%Y%m%d%H%M%S")
raise ValueError('`__version__` not defined in `deepchem/__init__.py`')
setup(name='deepchem',
version=_get_version(),
url='https://github.com/deepchem/deepchem',
maintainer='DeepChem contributors',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
license='MIT',
description='Deep learning models for drug discovery, \
quantum chemistry, and the life sciences.',
keywords=[
'deepchem',
'chemistry',
'biology',
'materials-science',
'life-science',
'drug-discovery',
],
packages=find_packages(exclude=["*.tests"]),
project_urls={
'Documentation': 'https://deepchem.readthedocs.io/en/latest/',
'Source': 'https://github.com/deepchem/deepchem',
},
install_requires=[
'joblib',
'numpy>=1.21',
'pandas',
'scikit-learn',
'scipy>=1.10.1',
'rdkit',
],
extras_require=extras,
python_requires='>=3.7,<3.11')