-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
42 lines (39 loc) · 1.46 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
from builtins import RuntimeError
from waterquality import __version__
import setuptools
short_description = 'The waterquality package extends the functionality of the waterdetect package to calculate ' \
'water quality parameters over the identified water mask. To do so, it is mandatory to have ' \
'waterdetect package installed (pip install waterdetect).'
long_description = short_description
setuptools.setup(
name="waterquality", # Replace with your own username
version=__version__,
author="Maurício Cordeiro",
author_email="[email protected]",
description=short_description,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cordmaur/WaterQuality",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
entry_points={
'console_scripts': ['waterquality=waterquality.WaterQuality:main'],
},
include_package_data=True,
package_data={'waterquality': ['WaterQuality.ini', 'inversion_functions.py']},
install_requires=[
'waterdetect>=1.5.12',
'numpy>=1.17',
'scikit_learn>=0.23',
'matplotlib>=3.3',
'PyPDF2>=1.26',
'lxml>=4.5.0',
'pillow>=7.0.0',
'pandas'
]
)