forked from learningmatter-mit/Chem-prop-pred
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (27 loc) · 780 Bytes
/
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
import os
import io
from setuptools import find_packages, setup
src_dir = os.path.abspath(os.path.dirname(__file__))
# Load README
def read(fname):
with io.open(os.path.join(os.path.dirname(__file__), fname), encoding="utf-8") as f:
return f.read()
setup(
name='chemproppred',
version='v0.1.0',
author='Gabe Bradford, Jurgis Ruza',
description='Chemistry-Informed Machine Learning for Polymer Electrolyte Discovery',
url='https://github.com/learningmatter-mit/Chem-prop-pred',
license='MIT',
long_description=read("README.md"),
packages=find_packages(),
install_requires=[
'matplotlib',
'numpy',
'pandas',
'scikit-learn',
'scipy',
'torch',
],
python_requires='>=3.7',
)