-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (67 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (67 loc) · 1.54 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
64
65
66
67
68
69
70
71
[project]
name = "hls-stac-parquet"
version = "0.2.0"
description = "Generate a STAC GeoParquet archive from the HLS STAC records"
readme = "README.md"
authors = [
{ name = "hrodmn", email = "henry@developmentseed.org" }
]
requires-python = ">=3.12"
dependencies = [
"aiohttp>=3.13.2",
"aiohttp-retry>=2.9.1",
"duckdb>=1.3.0",
"gql[httpx]>=4.0.0",
"hilbertcurve>=2.0.5",
"httpx>=0.28.1",
"mgrs>=1.5.0",
"obstore>=0.8.2",
"pystac>=1.13.0",
"pytest-recording>=0.13.4",
"python-cmr>=0.13.0",
"rustac>=0.9.12",
"smart-open>=7.1.0",
"typer>=0.20.0",
]
[project.scripts]
hls-stac-parquet = "hls_stac_parquet.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"boto3>=1.43.36",
"duckdb>=1.3.0",
"ipython>=9.7.0",
"itables>=2.5.2",
"jupyterlab>=4.6.0",
"markdown-callouts>=0.4.0",
"mike>=2.1.3",
"mkdocs>=1.6.1",
"mkdocs-jupyter>=0.25.1",
"mkdocs-material>=9.7.0",
"pandas>=2.3.3",
"plotly>=6.5.0",
"pre-commit>=4.4.0",
"pytest>=9.1.1",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.0.0",
"ruff>=0.15.19",
]
# Pytest configuration
[tool.pytest.ini_options]
addopts = [
"-ra",
"--strict-markers",
"--strict-config",
"--record-mode", "new_episodes",
"-vv",
]
testpaths = ["tests"]
markers = "vcr: records network activity"
filterwarnings = [
"ignore::UserWarning",
"ignore::DeprecationWarning",
]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"