-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (46 loc) · 1.5 KB
/
setup.py
File metadata and controls
51 lines (46 loc) · 1.5 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
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
with open("README.md") as readme_file:
readme = readme_file.read()
requirements = [
"numpy>=1.19.2",
"SimpleITK!=2.0.*",
"SimpleITK!=2.2.1", # https://github.com/mlcommons/GaNDLF/issues/536
"setuptools",
"wheel",
"twine",
"keyring",
"black",
"psutil",
"requests",
]
setup(
name="LabelFusion",
version="1.0.15", # dev: development release; this should be changed when tagging
author="Megh Bhalerao, Sarthak Pati",
author_email="admin@fets.ai",
python_requires=">=3.9",
packages=find_packages(),
scripts=["fusion_run"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
description=("Label fusion strategies for multi-class labels."),
url="https://github.com/FETS-AI/LabelFusion",
install_requires=requirements,
license="Apache-2.0",
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
keywords="semantic, segmentation, label-fusion, fusion",
zip_safe=False,
)