-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
55 lines (48 loc) · 1.44 KB
/
pyproject.toml
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
55
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = []
[project]
name = "cropmaps"
version = "0.0.1a0"
description = "MAGO cropmaps package is an open source Python toolbox for crop type mapping from Sentinel-2 L2A multispectral satellite data using two well known machine learning algorithms; SVM and Random Forest."
readme = {file = "README.md", content-type='text/markdown'}
license = {text = "GPL3"}
authors = [{name = "Alekos Falagas", email = "[email protected]"},]
maintainers = [{name = "Alekos Falagas", email = "[email protected]"}]
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: GIS",]
requires-python = ">=3.9"
dependencies = [
"wheel",
"creodias_finder@git+https://github.com/DHI-GRAS/creodias-finder",
"pandas",
"pyarrow",
"sentinelsat",
"geopandas",
"rasterio",
"scikit-learn",
"coloredlogs",
]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinxcontrib-apidoc",
"sphinxcontrib-napoleon",
"sphinx_rtd_theme",
"myst_parser",
"sphinxemoji"
]
dev = [
"pytest",
"pytest-cov",
"pytest-dependency",
"pytest-mock",
]