-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 1.04 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
[project]
name = "az-blob-stacio"
version = "0.1.2"
description = "An implementation of `pystac`'s `StacIO` for reading static STACs stored in Azure Blob Storage."
readme = "README.md"
authors = [
{ name = "Brendan McAndrew", email = "[email protected]" },
]
requires-python = ">=3.10"
dependencies = ["azure-storage-blob>=12.23.1", "pystac>=1.11.0"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://github.com/bmcandr/az-blob-stacio"
Repository = "https://github.com/bmcandr/az-blob-stacio.git"
[tool.uv]
dev-dependencies = [
"coverage>=7.6.3",
"pre-commit>=4.0.1",
"pytest-cov>=5.0.0",
"pytest>=8.3.3",
"ruff>=0.7.0",
]
[tool.coverage]
omit = ["tests/test_az_blob_stacio.py::test_write_catalog_to_azurite"]