-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 978 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
32
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
# Load the version info.
#
# Note that we cannot simply import the module, since dependencies listed
# in setup() will very likely not be installed yet when setup.py run.
#
# See:
# https://packaging.python.org/guides/single-sourcing-package-version
__version__ = None
with open('src/sen_et_openeo/_version.py') as fp:
exec(fp.read())
version = __version__
# Configure setuptools
setup(
name="sen-et-openeo",
version=version,
author="Jeroen Degerickx",
author_email="jeroen.degerickx@vito.be",
description=("Computing evapotranspiration from satellite data"),
url='',
license="Property of VITO NV",
setup_requires=['pytest-runner'],
tests_require=['pytest'],
package_data={
'': ['resources/*'],
},
zip_safe=True,
python_requires='>=3.11',
install_requires=[
],
test_suite='tests',
package_dir={'': 'src'},
packages=find_packages('src')
)