-
Notifications
You must be signed in to change notification settings - Fork 66
/
setup.py
35 lines (31 loc) · 1.07 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
# Can be used to load install_require
# with open('requirements.txt', 'r') as freq:
# required = freq.read().splitlines()
setuptools.setup(
name="imagecorruptions",
version="1.1.2",
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',
'numba >= 0.53.0'
],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)