forked from molecularsets/moses
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (25 loc) · 820 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
from setuptools import setup, find_packages
import moses
setup(name='moses',
version=moses.__version__,
python_requires='>=3.5.0',
packages=find_packages() + ['moses/metrics/SA_Score',
'moses/metrics/NP_Score'],
install_requires=[
'tqdm>=4.26.0',
'keras>=2.2',
'matplotlib>=3.0.0',
'numpy>=1.15',
'pandas>=0.23',
'scipy>=1.1.0',
'tensorflow>=1.0',
'torch>=0.4.1',
],
description='MOSES: A benchmarking platform for molecular generation models',
author='Neuromation & Insilico Medicine Teams',
author_email='[email protected], [email protected]',
license='MIT',
package_data={
'': ['*.csv', '*.h5', '*.gz'],
}
)