forked from molecularsets/moses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 830 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',
'matplotlib>=3.0.0',
'numpy>=1.15',
'pandas>=0.23',
'scipy>=1.1.0',
'torch>=1.0.1',
'fcd_torch'
],
description=('Molecular Sets (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'],
}
)