-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
49 lines (43 loc) · 1.49 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
from setuptools import setup, find_packages
def _get_version():
with open('jaxchem/__init__.py') as fp:
for line in fp:
if line.startswith('__version__'):
g = {}
exec(line, g)
return g['__version__']
raise ValueError('`__version__` not defined in `jaxchem/__init__.py`')
def _parse_requirements(requirements_txt_path):
with open(requirements_txt_path) as fp:
return fp.read().splitlines()
setup(
name='jaxchem',
version=_get_version(),
url='https://github.com/deepchem/jaxchem',
maintainer='DeepChem contributors',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
license='MIT',
description='An experimental repository to work on some Jax models for chemistry',
keywords=[
'jax'
'deepchem',
'life-science',
'drug-discovery',
],
packages=find_packages(exclude=["tests", "tests.*"]),
project_urls={
'Bug Tracker': 'https://github.com/deepchem/jaxchem/issues',
'Source': 'https://github.com/deepchem/jaxchem',
},
install_requires=_parse_requirements('requirements.txt'),
python_requires='>=3.6'
)