-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 949 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 949 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
32
from setuptools import setup, find_namespace_packages
setup(
name="ccitk",
use_scm_version=True,
author="Surui Li",
author_email="surui.li@imperial.ac.uk",
description="Computational Cardiac Imaging Toolkit",
package_dir={"": "."},
packages=find_namespace_packages(),
setup_requires=["setuptools >= 40.0.0"],
package_data={"": ["*.conf", "*.txt"]},
include_package_data=True,
entry_points={
"console_scripts": [
"ccitk-ukbb-download = ccitk.ukbb.download.master:main",
"ccitk-ukbb-convert = ccitk.ukbb.convert.cli:main",
"ccitk-ukbb-segment = ccitk.ukbb.segment.cli:main",
"ccitk-ukbb-analyze = ccitk.ukbb.analyze.cli:main",
"ccitk-cmr-segment = ccitk.cmr_segment.cli:main",
]
},
# install_requires=[
# "numpy",
# "nibabel",
# "vtk",
# "SimpleITK",
# "pydicom",
#
# ],
)