forked from rslab-ntua/senet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.32 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()
with open('requirements.txt') as f:
required = f.read().splitlines()
print(required)
setuptools.setup(
name = "senet",
version = "0.0.0a0",
author = "Alekos Falagas",
author_email = "[email protected]",
description = "Energy Balance model approach for irrigation (SEN-ET SNAP plugin)",
long_description = long_description,
long_description_content_type = "text/markdown",
url="https://gitlab.com/prima-mago/senet",
packages = setuptools.find_packages(),
include_package_data=True,
license="GNU General Public License v3 or later (GPLv3+)",
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
python_requires = '>=3.6',
install_requires=['numpy',
'wheel',
'pypro4sail @ git+https://github.com/hectornieto/pypro4sail@master',
'pyTSEB @ git+https://github.com/DHI-GRAS/pyTSEB@master',
'pyDMS @ git+https://github.com/alekfal/pyDMS@master',
'creodias_finder @ git+https://github.com/DHI-GRAS/creodias-finder@main',
required],
)