-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
executable file
·31 lines (27 loc) · 877 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
31
#!/usr/bin/env python
from setuptools import setup, find_packages
import pathlib
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name='IETK-Ret',
version='0.1.1',
description='Image Enhancement Toolkit for Retinal Fundus Images IETK-Ret',
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/adgaudio/ietk-ret",
author='Alex Gaudio',
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
],
include_package_data=True,
packages=find_packages(),
install_requires=[
"argparse", "opencv-python", "opencv-contrib-python",
"matplotlib", "numpy", "pillow", "scikit-image",
"scipy",
]
)