-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (73 loc) · 1.86 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (73 loc) · 1.86 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "harmonize-ds"
version = "0.4.0"
description = "."
readme = "README.rst"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Harmonize Brazil Team", email = "bdc.team@inpe.br"},
]
keywords = [
"lulc"
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"jinja2 (>=3.1.5,<4.0.0)",
"click (>=8.1.8,<9.0.0)",
"geopandas (>=1.0.1,<2.0.0)",
"pandas (>=2.2.3,<3.0.0)",
"httpx (>=0.28.1,<0.29.0)",
"pystac-client (>=0.8.5,<0.9.0)",
"PyYAML==6.0.2",
"owslib (>=0.32.1,<0.33.0)",
"rich (>=13.9.4,<14.0.0)",
"wlts.py >= 1.0",
"matplotlib >= 3.10.6"
]
# Extras Dependencies
[project.optional-dependencies]
dev = ["pre-commit"]
docs = [
"Sphinx>=7.0",
"sphinx_rtd_theme",
"sphinx-copybutton",
"sphinx-tabs",
]
tests = [
"coverage>=6.4",
"coveralls>=3.3",
"pytest>=7.4",
"pytest-cov>=4.1",
"pytest-pep8>=1.0",
"pydocstyle>=4.0",
"isort>4.3",
"check-manifest>=0.40",
]
all = ["harmonize_ds[docs,tests]"]
## End extras dependencies
[build-system]
requires = ["setuptools>=67.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["harmonize_ds*", "harmonize_ds"]
exclude = ["tests*"]
namespaces = false
[tool.setuptools.package-data]
"harmonize_ds" = [
"py.typed",
"jsonschemas/*.json",
"templates/*.html"
]
[project.scripts]
harmonizeds-cli = "harmonize_ds.cli:cli"