-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 loc) · 1.02 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
[project]
authors = [{name = "Your Name", email = "[email protected]"}]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"authlib>=1.3.2",
"brotli>=1.1.0",
"cel-python>=0.1.5",
"eoapi-auth-utils>=0.4.0",
"fastapi>=0.115.5",
"httpx>=0.28.0",
"pydantic-settings>=2.6.1",
"uvicorn>=0.32.1",
]
description = "STAC authentication proxy with FastAPI"
keywords = ["STAC", "FastAPI", "Authentication", "Proxy"]
license = {file = "LICENSE"}
name = "stac-auth-proxy"
readme = "README.md"
requires-python = ">=3.8"
version = "0.1.0"
[tool.coverage.run]
branch = true
[tool.isort]
known_first_party = ["stac_auth_proxy"]
profile = "black"
[tool.ruff]
ignore = ["E501", "D203", "D205", "D212"]
select = ["D", "E", "F"]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling>=1.12.0"]
[dependency-groups]
dev = [
"jwcrypto>=1.5.6",
"pre-commit>=3.5.0",
"pytest-cov>=5.0.0",
"pytest>=8.3.3",
]