-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
42 lines (39 loc) · 1.44 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name = 'auglichem',
packages=setuptools.find_packages(exclude=("docs","examples",)),
version = '0.1.9',
license = 'MIT',
description = 'Data augmentation of molecules and crystals.',
long_description = long_description,
long_description_content_type = "text/markdown",
author = 'Yuyang Wange, Rishikesh Magar, Cooper Lorsung, Hariharan Ramasubramanian, Chen Liang, Peiyuan Li, Amir Barati Farimani',
author_email = 'clorsung@andrew.cmu.edu',
url = 'https://github.com/BaratiLab/AugLiChem',
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
"Operating System :: OS Independent",
],
python_requires = '>=3.8',
install_requires = ['numpy>=1.21.1',
'pytest>=6.0.1',
'pytest-cov',
'scikit-learn',
'pandas>=1.3.1',
'matplotlib>=3.4.2',
'pyyaml>=5.4.1',
'tqdm',
'ase>=3.22.0',
'pymatgen>=2022.0.11',
'rdflib',
'torch>=1.10',
'rdkit-pypi',
'tensorboard>=2.4.1',
'jupyter>=1.0.0',
'chardet>=4.0.0',
],
)