forked from stac-utils/stac-task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.62 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
[project]
name = "stactask"
version = "0.4.1"
authors = [{ name = "Matthew Hanson", email = "[email protected]" }]
maintainers = [{ name = "Pete Gadomski", email = "[email protected]" }]
description = "Class interface for running custom algorithms and workflows on STAC Items"
readme = "README.md"
requires-python = ">=3.8"
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"pystac>=1.6",
"python-dateutil>=2.7.0",
"boto3-utils>=0.3.2",
"fsspec>=2022.8.2",
"jsonpath_ng>=1.5.3",
"requests>=2.28.1",
"s3fs>=2022.8.2",
]
[project.optional-dependencies]
dev = [
"black~=24.0",
"codespell~=2.2.5",
"mypy~=1.8.0",
"pre-commit~=3.5.0",
"pytest-cov~=4.1.0",
"pytest~=8.0",
"ruff==0.3.0",
"types-setuptools~=69.0",
]
[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]
select = ["F", "E", "W", "I", "ERA", "RUF"]