forked from MedMNIST/MedMNIST
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (42 loc) · 1.19 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
# To build and upload to PyPI:
#
# python3 setup.py sdist bdist_wheel
# python3 -m twine upload dist/*
#
from setuptools import setup, find_packages
import medmnist
def readme():
with open('README.md', encoding='utf-8') as f:
content = f.read()
return content
README = readme()
setup(
name='medmnist',
version=medmnist.__version__,
url=medmnist.HOMEPAGE,
license='Apache-2.0 License',
author='MedMNIST Team',
author_email='[email protected]',
python_requires=">=3.6.0",
description='[MedMNIST+] 18x Standardized Datasets for 2D and 3D Biomedical Image Classification with Multiple Size Options: 28 (MNIST-Like), 64, 128, and 224',
long_description=readme(),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"numpy",
"pandas",
"scikit-learn",
"scikit-image",
"tqdm",
"Pillow",
"fire",
"torch",
"torchvision"
],
zip_safe=True,
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only"
]
)