-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 1.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
[project]
name = "terra-stac-api"
version = "1.0.4"
description = "Terrascope STAC API"
authors = [{name = "Stijn Caerts", email = "[email protected]"}]
dependencies = [
"stac-fastapi.opensearch==3.2.0",
"python-jose==3.3.0",
"asgi-logger==0.1.0",
"PyYAML==6.0.1",
"jsonpath_ng==1.6.1",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-env",
"pytest-asyncio~=0.21.0",
"asgi-lifespan==2.1.0",
"httpx",
"pre-commit",
"ruff",
]
[tool.setuptools.packages.find]
include = ["terra_stac_api*"]
[tool.pytest_env]
ES_HOST = {value = "0.0.0.0", skip_if_set = true}
ES_PORT = {value = "9200", skip_if_set = true}
ES_USE_SSL = {value = "false", skip_if_set = true}
ES_VERIFY_CERTS = {value= "false", skip_if_set = true}
ROLE_ADMIN = {value = "stac-admin", skip_if_set = true}
ROLE_EDITOR = {value = "stac-editor", skip_if_set = true}
OIDC_ISSUER = {value = "https://example.com"}
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
extend-select = ["I"]