-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (20 loc) · 898 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
from setuptools import find_packages, setup
with open("requirements.txt", "r") as f:
required = f.read().splitlines()
with open("LICENSE") as f:
license = f.read()
setup(
name="sptx_ccf_registration",
version="0.1.0",
description="Registration pipeline of SPTx data to the Allen CCF. Includes"
"preprocessing, registration, and posthoc analysis steps.",
author="Mike Huang, Min Chen",
author_email="[email protected]",
url="https://github.com/AllenInstitute/sptx_ccf_registration",
license=license,
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={"sptx_ccf_registration.metrics_dashboard": ["ccf_merfish_metrics/requirements.txt", "ccf_merfish_metrics/app.py", "ccf_merfish_metrics/Procfile", "ccf_merfish_metrics/templates/index.html"]},
include_package_data=True,
install_requires=required,
)