-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (35 loc) · 1.04 KB
/
setup.py
File metadata and controls
42 lines (35 loc) · 1.04 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
from setuptools import setup, find_packages
import medsegbench
def readme():
with open('README.md', encoding='utf-8') as f:
content = f.read()
return content
README = readme()
setup(
name='medsegbench',
version='1.0.0',
url=medsegbench.HOMEPAGE,
license='Apache-2.0 License',
author='Musa Aydin and Zeki Kuş',
author_email='maydin@fsm.edu.tr;zkus@fsm.edu.tr',
python_requires=">=3.6.0",
description='MedSegBench: A Comprehensive Benchmark for Medical Image Segmentation in Diverse Data Modalities',
long_description=readme(),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"numpy",
"scikit-learn",
"scikit-image",
"Pillow",
"torch",
"torchvision",
"segmentation-models-pytorch"
],
zip_safe=True,
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only"
]
)