-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
71 lines (65 loc) · 1.99 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
69
70
71
[project]
name = "stactask"
version = "0.6.1"
authors = [{ name = "Matthew Hanson", email = "[email protected]" }]
maintainers = [{ name = "Ian Cooke", email = "[email protected]" }]
description = "Class interface for running custom algorithms and workflows on STAC Items"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["pystac", "imagery", "raster", "catalog", "STAC"]
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"pystac>=1.6",
"python-dateutil>=2.7.0",
"boto3-utils>=0.3.2",
"fsspec>=2022.8.2",
"stac-asset>=0.3.0",
"jsonpath_ng>=1.5.3",
"requests>=2.28.1",
"s3fs>=2022.8.2",
]
[project.optional-dependencies]
dev = [
"black~=24.0",
"codespell~=2.3",
"mypy~=1.9",
"pre-commit~=3.7",
"ruff~=0.6.5",
"types-setuptools~=75.1",
"boto3-stubs",
]
test = ["pytest~=8.0", "pytest-cov~=5.0", "pytest-env~=1.1", "moto~=5.0.5"]
[project.urls]
Issues = "https://github.com/stac-utils/stactask/issues"
Github = "https://github.com/stac-utils/stac-task"
Changelog = "https://github.com/stac-utils/stac-task/blob/main/CHANGELOG.md"
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
module = ["boto3utils", "jsonpath_ng.ext", "fsspec"]
ignore_missing_imports = true
[tool.ruff.lint]
select = ["F", "E", "W", "I", "ERA", "RUF"]
[tool.pytest.ini_options]
addopts = "-rx -q -s -vvv"
log_cli_level = "INFO"
log_cli = true
markers = ["system", "unit"]
env = [
"AWS_DEFAULT_REGION=us-west-2",
"AWS_ACCESS_KEY_ID=foo",
"AWS_SECRET_ACCESS_KEY=bar",
"AWS_SESSION_TOKEN=baz",
]
filterwarnings = ["ignore::UserWarning:stactask.*:"]