-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
44 lines (40 loc) · 1.17 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
"""Setup file for the cropclassification package."""
import setuptools
with open("README.md") as fh:
long_description = fh.read()
with open("cropclassification/version.txt") as file:
version = file.readline()
setuptools.setup(
name="cropclassification",
version=version,
author="Pieter Roggemans",
author_email="[email protected]",
description="Package to classify crops based on sentinel images.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/theroggy/cropclassification",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
"geofileops",
"geopandas",
"openeo",
"psutil",
"rasterio",
"rasterstats",
"rioxarray",
"scikit-learn",
"tensorflow",
"numpy<2",
"exactextract",
],
entry_points="""
[console_scripts]
cropclassification=cropclassification.taskrunner:main
""",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
)