-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (34 loc) · 1.09 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
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.rst")) as f:
long_description = f.read()
setup(
name="qda_modelos",
packages=["qda_modelos"],
version="1.1.3",
license="BSD",
description="Implement bio-optic models to evaluate water quality indexes with satellite images.",
long_description=long_description,
long_description_content_type="text/x-rst",
author="CERTI Foundation",
author_email="[email protected]",
url="https://github.com/fundacaocerti/qda_modelos",
download_url="https://github.com/fundacaocerti/qda_modelos/archive/v1.1.3.tar.gz",
keywords=[
"bio-optic models",
"water quality",
"indexes",
"satellite image",
"reservoir",
"lake",
"water",
"remote sensing",
],
install_requires=["numpy", "qda_modelos"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
)