-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (49 loc) · 1.83 KB
/
Copy pathsetup.py
File metadata and controls
52 lines (49 loc) · 1.83 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="NiChart_BAScores",
version="0.0.1",
description="Train and evaluate image to biomarkers models",
long_description=long_description,
long_description_content_type="text/markdown",
author="Spiros Maggioros, Guray Erus",
author_email="software@cbica.upenn.edu",
maintainer="Spiros Maggioros",
maintainer_email="Spiros.Maggioros@pennmedicine.upenn.edu",
download_url="https://github.com/CBICA/NiChart_BAScores/",
url="https://github.com/CBICA/NiChart_BAScores/",
packages=find_packages(exclude=[".github"]),
python_requires=">=3.9",
install_requires=[
"torch",
"torchvision",
"torchio",
"torchmetrics",
"tqdm",
"numpy",
"pandas",
],
entry_points={"console_scripts": ["NiChart_BAScores = BAScores.__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 NiChart_BAScores, the user agrees to the following license: See https://www.med.upenn.edu/cbica/software-agreement-non-commercial.html",
keywords=[
"deep learning",
"image segmentation",
"semantic segmentation",
"medical image analysis",
"medical image segmentation",
"nnU-Net",
"nnunet",
],
package_data={"NiChart_BAScores": ["VERSION"]},
)