-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.29 KB
/
setup.py
File metadata and controls
50 lines (46 loc) · 1.29 KB
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
from setuptools import setup, find_packages
install_requires = [
'jax',
'jax-md',
'jax-sgmc',
'optax',
'dm-haiku',
'sympy',
'tree_math',
'cloudpickle',
'chex',
'blackjax==0.3.0',
'jaxopt',
'dm-tree'
]
extras_requires = {
'all': ['mdtraj<=1.9.6', 'matplotlib'],
}
with open('README.md', 'rt') as f:
long_description = f.read()
setup(
name='chemtrain',
version='0.0.1',
license='Apache 2.0',
description='Training molecular dynamics potentials.',
author='Stephan Thaler',
author_email='stephan.thaler@tum.de',
packages=find_packages(exclude='examples'),
python_requires='>=3.8',
install_requires=install_requires,
extras_require=extras_requires,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/tummfm/chemtrain',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
],
zip_safe=False,
)