-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
35 lines (32 loc) · 1.12 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
34
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(name='FingerprintDecoder',
version='1.0.1',
long_description=long_description,
long_description_content_type='text/markdown',
author='Islambek Ashyrmamatov',
author_email='ashyrmamatov01@gmail.com',
license='Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)',
packages=['FingerprintDecoder'],
install_requires=[
'rdkit-pypi==2021.3.4',
'torch==1.9.0',
'selfies==1.0.4',
'sentencepiece==0.1.95',
'pandas>=1.3.1',
'numpy>=1.22.1',
'matplotlib>=3.4.3',
'seaborn==0.11.1',
'gdown'
],
entry_points = '''
[console_scripts]
train = FingerprintDecoder.train:main
evaluate = FingerprintDecoder.evaluate:main
predict = FingerprintDecoder.predict:main
download_checkpoints = FingerprintDecoder.utils:download_checkpoints
''',
zip_safe=True
)