generated from stactools-packages/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (61 loc) · 1.76 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
56
57
58
59
60
61
62
63
64
65
66
67
68
[project]
name = "stactools-glad-glclu2020"
version = "0.1.1"
description = "GLAD Land Use Land Cover 2020 stactools packages"
readme = "README.md"
authors = [{ name = "Henry Rodman", email = "[email protected]" }]
maintainers = [{ name = "Henry Rodman", email = "[email protected]" }]
keywords = ["stactools", "pystac", "catalog", "STAC"]
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10"
dependencies = [
"rasterio",
"parse>=1.20.2",
"pystac>=1.11.0,<2.0.0",
"python-slugify>=8.0.4",
"rio-cogeo>=5.3.6",
"rio-stac>=0.10.0",
"stactools>=0.5.0",
]
[project.optional-dependencies]
dev = [
"black~=24.4",
"codespell~=2.3",
"ipython>=8.29.0",
"jupyterlab>=4.3.0",
"mypy~=1.10",
"pre-commit~=4.0",
"pytest-cov~=6.0",
"pytest~=8.2",
"requests~=2.32",
"ruff==0.7.3",
]
docs = ["pystac~=1.11", "ipykernel~=6.29", "jinja2~=3.1"]
[project.urls]
Github = "https://github.com/stactools-packages/glad-glclu2020"
Issues = "https://github.com/stactools-packages/glad-glclu2020/issues"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
"stactools.glad_glclu2020.data" = ["*.csv"]
[tool.isort]
profile = "black"
[tool.mypy]
explicit_package_bases = true
namespace_packages = true
show_error_codes = true
strict = true
mypy_path = "src"
[tool.ruff]
select = ["E", "F", "I"]