-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (54 loc) · 1.68 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (54 loc) · 1.68 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
[project]
name = "stactools-sentinel2"
dynamic = ["version", "readme"]
description = "Create STAC Items from Sentinel-2 metadata"
authors = [{ "name" = "stac-utils", "email" = "stac@radiant.earth"}]
keywords = [ "stactools", "pystac", "catalog", "STAC" ]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.9"
dependencies = [
"antimeridian >= 0.3.5",
"shapely >= 2.0.0",
"stactools >= 0.5.2",
"pyproj >= 3.5.0",
"pystac >= 1.9.0",
]
[project.optional-dependencies]
dev = [
"codespell",
"coverage",
"pre-commit",
"ruff",
"pytest",
"pytest-cov",
"requests",
"pystac>1.12",
]
[project.urls]
Url = "https://github.com/stactools-sentinel2/stactools-sentinel2"
Issues = "https://github.com/stactools-sentinel2s/stactools-sentinel2/issues"
Github = "https://github.com/stactools-sentinel2s/stactools-sentinel2"
CHANGELOG = "https://github.com/stactools-sentinel2s/stactools-sentinel2/blob/main/CHANGELOG.md"
[tool.setuptools.dynamic]
version = {attr = "stactools.sentinel2.__version__" }
readme = {file = ["README.md"], content-type = "text/plain"}
[tool.setuptools]
package-dir = { "" = "src" }
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I"]
# pyproject.toml
[tool.pytest.ini_options]
filterwarnings = ["error", "ignore::antimeridian.FixWindingWarning"]