This repository has been archived by the owner on Jun 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (49 loc) · 1.48 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
43
44
45
46
47
48
49
50
51
52
53
54
'''
Created on Jul 9, 2021
@author: Lukas Graf (D-USYS, ETHZ)
'''
import setuptools
from setuptools import find_packages
from os import path
home = path.abspath(path.dirname(__file__))
with open(path.join(home, 'README.md'), encoding='utf-8') as readme:
long_description = readme.read()
setuptools.setup(
name='AgriSatPy',
setup_requires=['setuptools_scm'],
use_scm_version={'version_scheme': 'post-release'},
description = '',
long_description = long_description,
long_description_content_type = 'text/markdown',
author='Gregor Perich and Lukas Graf (D-USYS, ETH Zurich)',
author_email ='NA',
url='NA',
packages = find_packages(
where = 'src'
),
package_dir={'':'src'},
include_package_data=True,
package_data={'': []},
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=['pandas',
'geopandas',
'numpy',
'pydantic',
'pyproj',
'rasterio',
'joblib',
'psycopg2-binary',
'sqlalchemy',
'matplotlib',
'geoalchemy2',
'opencv-python',
'requests',
'xarray',
'rtree',
'zarr',
'numba'
]
)