forked from MolecularAI/Icolos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 772 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
from setuptools import setup, find_namespace_packages
from pathlib import Path
long_description = (Path(__file__).parent / "README.md").read_text()
setup(
name="icolos",
maintainer="Christian Margreitter, Harry Moore",
version="1.10.0",
url="https://github.com/MolecularAI/Icolos",
packages=find_namespace_packages(where="src"),
package_dir={"": "src"},
description="Icolos Workflow Manager",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.8",
entry_points={
"console_scripts": [
"icolos = icolos.scripts.executor:main",
"validator = icolos.scripts.validator:main",
"sdf2smi = icolos.scripts.sdf2smi:main",
]
},
)