-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 787 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 787 Bytes
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
from setuptools import setup, find_packages
setup(
name='virtual_flask',
version='0.1.0',
packages=find_packages(),
include_package_data=True,
install_requires=[
"sh",
"wheel",
"jinja2",
"html5validator",
"flask",
"rdkit",
"opencv-python",
"pandas",
"dill",
"numpy<2",
"psycopg2-binary",
# "pygraphviz",
"requests",
"rdcanon @ git+https://github.com/coleygroup/rdcanon/"
],
entry_points={
'console_scripts': [
'run-corpus=smarts_toolkit.webkit.__main__:main',
'run-analysis=analysis.webkit.__main__:main',
'run-campaign=campaign.webkit.__main__:main',
]
},
)