-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (40 loc) · 1.16 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
from setuptools import setup, find_packages
install_requires = [
'jax==0.3.14',
'jax-md==0.1.28',
'optax==0.1.2',
'dm-haiku==0.0.6',
'sympy==1.10.1',
'tree_math',
'cloudpickle',
'chex',
'blackjax==0.3.0',
'coax==0.1.9',
'gym==0.24.1'
]
with open('README.md', 'rt') as f:
long_description = f.read()
setup(
name='mof_al',
version='0.1.0',
license='Apache 2.0',
description='Active learning for MOFs via GNNs.',
author='Stephan Thaler',
author_email='stephan.thaler@tum.de',
packages=find_packages(exclude='examples'),
python_requires='>=3.8',
install_requires=install_requires,
long_description=long_description,
long_description_content_type='text/markdown',
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,
)