-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (23 loc) · 1 KB
/
Copy pathsetup.py
File metadata and controls
28 lines (23 loc) · 1 KB
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Packaging for the ChromoPredict toolbox.
Installing is *not* strictly required -- the scripts also run straight from a
checkout if you put ``src/`` on the path (see ``-chromopredict-src`` in
``chromopredict_batch.py``). But an editable install makes ``import
chromopredict`` work everywhere (tutorial notebooks, the batch script, ...)::
pip install -e .
python chromopredict_batch.py -input structures.xlsx -out predictions.csv \
-plot error.png -rules auto woodward woodward_refine -solvent CCO
"""
from setuptools import find_namespace_packages, setup
setup(
name="chromopredict",
version="1.1.0",
description="Automated Woodward-Fieser / Fieser / Fieser-Kuhn lambda_max prediction",
# src/ layout: tell setuptools the packages live under src/
package_dir={"": "src"},
packages=find_namespace_packages(where="src", include=["chromopredict*"]),
python_requires=">=3.9",
install_requires=["numpy", "pandas", "pillow"],
)