-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (31 loc) · 1.08 KB
/
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 setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(name='MolForge',
version='1.0.2',
long_description=long_description,
long_description_content_type='text/markdown',
author='Umit V. Ucak, Islambek Ashyrmamatov, Juyong Lee',
author_email='{braket, ashyrmamatov, nicole23}@snu.ac.kr',
license='Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)',
url='https://github.com/knu-lcbc/MolForge',
packages=['MolForge'],
install_requires=[
'selfies>=1.0.4',
'sentencepiece',
'pandas>=1.3.1',
'numpy>=1.22.1',
'matplotlib>=3.4.3',
'seaborn>=0.11.1',
'gdown'
],
entry_points = '''
[console_scripts]
train = MolForge.train:main
evaluate = MolForge.evaluate:main
predict = MolForge.predict:main
download_checkpoints = MolForge.utils:download_checkpoints
''',
zip_safe=True
)