-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
126 lines (113 loc) · 3.08 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[project]
name = "pyarc2stac"
description = "Python library for converting arc to STAC"
readme = "README.md"
authors = [
{ name = "Abdelhak Marouane", email = "[email protected]" },
{ name = "Slesa Adhikari", email = "[email protected]" },
]
maintainers = [{ name = "Abdelhak Marouane", email = "[email protected]" }]
keywords = ["arc2stac", "pystac", "imagery", "raster", "catalog", "STAC", "ArcGis"]
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"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",
]
requires-python = ">=3.9"
dependencies = [
"isodate>=0.6.0",
"numpy>=1.26.4",
"pyproj",
"pystac>=1.10.0",
"python-dateutil>=2.7.0",
"requests>=2.28.0",
"pydantic_geojson>=0.1.1"
]
dynamic = ["version"]
[project.optional-dependencies]
bench = ["asv~=0.6.0", "packaging~=24.0", "virtualenv~=20.22"]
docs = [
"Sphinx~=6.2",
"boto3~=1.28",
"ipython~=8.12",
"jinja2<4.0",
"jupyter~=1.0",
"nbsphinx~=0.9.0",
"pydata-sphinx-theme~=0.13",
"rasterio~=1.3",
"shapely~=2.0",
"sphinx-autobuild==2024.2.4",
"sphinx-design~=0.5.0",
"sphinxcontrib-fulltoc~=1.2",
]
jinja2 = ["jinja2<4.0"]
orjson = ["orjson>=3.5"]
test = [
"black~=24.0",
"codespell~=2.2",
"coverage~=7.2",
"doc8~=1.1",
"html5lib~=1.1",
"jinja2<4.0",
"jsonschema~=4.18",
"mypy~=1.2",
"orjson~=3.8",
"pre-commit~=3.2",
"pytest-cov~=5.0",
"pytest-mock~=3.10",
"pytest-recording~=0.13.0",
"pytest~=8.0",
"requests-mock~=1.11",
"ruff==0.3.4",
"types-html5lib~=1.1",
"types-orjson~=3.6",
"types-jsonschema~=4.18",
"types-python-dateutil~=2.8",
"types-urllib3~=1.26",
"pystac[validation]"
]
dev = [
"ipython"
]
urllib3 = ["urllib3>=1.26"]
validation = ["jsonschema~=4.18"]
[project.urls]
Homepage = "https://github.com/NASA-IMPACT/pyarc2stac"
Documentation = "https://pyarc2stac.readthedocs.io"
Repository = "https://github.com/NASA-IMPACT/pyarc2stac.git"
Changelog = "https://github.com/NASA-IMPACT/pyarc2stac/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
include = ["pyarc2stac*"]
exclude = ["tests*", "benchmarks*"]
[tool.setuptools.dynamic]
version = { attr = "pyarc2stac.version.__version__" }
[tool.mypy]
show_error_codes = true
strict = true
[[tool.mypy.overrides]]
module = ["jinja2"]
ignore_missing_imports = true
[tool.coverage.run]
branch = true
source = ["pyarc2stac"]
[tool.coverage.report]
fail_under = 90
exclude_lines = ["if TYPE_CHECKING:"]
[tool.doc8]
ignore-path = ["docs/_build", "docs/tutorials"]
max-line-length = 88
[tool.ruff]
line-length = 88
select = ["E", "F", "I"]
[tool.pytest.ini_options]
filterwarnings = ["error"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"