-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 842 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 842 Bytes
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
from setuptools import setup, find_packages
__author__ = 'Tanjin He'
__maintainer__ = 'Tanjin He'
__email__ = 'tanjin_he@berkeley.edu'
if __name__ == "__main__":
setup(name='SynthesisSimilarity',
version='1.0.0',
author="Tanjin He",
author_email="tanjin_he@berkeley.edu",
license="MIT License",
packages=find_packages(),
include_package_data=True,
install_requires=[
'pymatgen',
'adjustText',
'colorcet',
'psutil',
'seaborn',
'jsonlines',
'matplotlib',
'tensorflow==2.7.0',
'protobuf==3.19.6',
'regex',
'timebudget',
'scikit-learn',
'gdown',
],
zip_safe=False)