forked from chainer/chainer-chemistry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 844 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
from distutils.core import setup
import os
from setuptools import find_packages
setup_requires = []
install_requires = [
'chainer >=7.0.0',
'joblib',
'matplotlib',
'pandas',
'scikit-learn',
'scipy',
'tqdm',
]
here = os.path.abspath(os.path.dirname(__file__))
# Get __version__ variable
exec(open(os.path.join(here, 'chainer_chemistry', '_version.py')).read())
setup(name='chainer-chemistry',
version=__version__, # NOQA
description='Chainer Chemistry: A Library for Deep Learning in Biology\
and Chemistry',
author='Kosuke Nakago',
author_email='[email protected]',
packages=find_packages(),
license='MIT',
url='http://chainer-chemistry.readthedocs.io/en/latest/index.html',
setup_requires=setup_requires,
install_requires=install_requires
)