forked from thomas0809/MolScribe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 810 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
from distutils.core import setup
from pathlib import Path
setup(name='MolScribe',
version='1.1.1',
description='MolScribe',
author='Yujie Qian',
author_email='[email protected]',
url='https://github.com/thomas0809/MolScribe',
packages=['molscribe', 'molscribe.indigo', 'molscribe.inference', 'molscribe.transformer'],
package_dir={'molscribe': 'molscribe'},
package_data={'molscribe': ['vocab/*']},
python_requires='>=3.7',
setup_requires=['numpy'],
install_requires=[
"numpy",
"torch>=1.11.0",
"pandas",
"matplotlib",
"opencv-python>=4.5.5.64",
"SmilesPE==0.0.3",
"OpenNMT-py==2.2.0",
"rdkit-pypi>=2021.03.2",
"albumentations==1.1.0",
"timm==0.4.12"
])