forked from bethgelab/imagecorruptions
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (27 loc) · 941 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="imagecorruptions",
version="0.1.1",
author="Evgenia Rusak, Benjamin Mitzkus",
author_email="[email protected], [email protected]",
description="This package provides a set of image corruptions.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bethgelab/imagecorruptions",
packages=setuptools.find_packages(),
install_requires=[
'numpy >= 1.16',
'Pillow >= 5.4.1',
'scikit-image >= 0.15',
'opencv-python >= 3.4.5',
'scipy >= 1.2.1',
],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)