-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (49 loc) · 1.82 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
49
50
51
52
53
"""Setup tool for DLWMLS."""
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="DLWMLS",
version="0.0.1",
description="DLWMLS - Deep Learning White Matter Lesion Segmentation",
long_description=long_description,
long_description_content_type="text/markdown",
author="Kyunglok Baik, Yuhan Cui, Guray Erus",
author_email="[email protected]",
maintainer="Kyunglok Baik",
maintainer_email="[email protected]",
download_url="https://github.com/CBICA/DLWMLS/",
url="https://github.com/CBICA/DLWMLS/",
packages=find_packages(exclude=["tests", ".github"]),
python_requires=">=3.8",
install_requires=[
"torch>=2.2.1",
"nnunetv2>=2.2.1",
"argparse",
"huggingface_hub",
"pathlib",
],
entry_points={"console_scripts": ["DLWMLS = DLWMLS.__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 DLWMLS, 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",
"nnunetv2",
],
package_data={"DLWMLS": ["VERSION"]},
)