-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (43 loc) · 1.84 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""Setup tool for PredCRD."""
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
with open("requirements.txt") as f:
required = f.read().splitlines()
setup(
name="PredCRD",
version="0.0.1",
description="PredCRD - Predict Continuous Representation of Disease.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Kyunglok Baik, Di Wu",
author_email="[email protected]",
maintainer="Kyunglok Baik",
maintainer_email="[email protected]",
download_url="https://github.com/CBICA/PredCRD/",
url="https://github.com/CBICA/PredCRD/",
packages=find_packages(exclude=["tests", ".github","tabular_data", "roi_model", "notebook", "log"]),
python_requires=">=3.8",
install_requires=required,
entry_points={"console_scripts": ["PredCRD = PredCRD.__main__:main"]},
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
],
license="By installing/using PredCRD, the user agrees to the following license: See https://www.med.upenn.edu/cbica/software-agreement-non-commercial.html",
keywords=[
"deep learning",
"knowledge transfer",
"disease heterogeneity",
"semantic segmentation",
"medical image analysis",
"medical image segmentation",
],
package_data={"PredCRD": ["VERSION"]},
)