-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (42 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
44 lines (42 loc) · 1.08 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
[project]
name = "stac-transaction-api"
requires-python = ">=3.10,<4.0"
dependencies = [
"boto3 == 1.35.60",
"certifi == 2024.6.2",
"cffi == 1.16.0",
"charset-normalizer == 3.3.2",
"confluent-kafka == 2.6.0",
"cryptography == 42.0.8",
"esgf-playground-utils==1.0.5",
"esgvoc == 1.0.0",
"fastapi == 0.114.0",
"globus-sdk == 3.41.0",
"httpx == 0.28.1",
"httpx-auth == 0.23.1",
"idna == 3.10",
"jsonschema == 4.24.0",
"pyjwt == 2.8.0",
"pytest == 8.3.5",
"pytest-cov == 6.0.0",
"pytest-mock == 3.14.0",
"python-dotenv == 1.0.1",
"requests == 2.32.3",
"stac-fastapi.types == 6.0.0",
"stac-fastapi.extensions == 6.0.0",
"uvicorn == 0.34.0",
]
description = "West ESGF STAC Transaction API"
version = "0.1.0"
authors = [
{"name" = "Lukasz Lacinski", "email" = "lukasz@uchicago.edu"},
{"name" = "Steve Turoscy", "email" = "sturoscy@uchicago.edu"},
]
readme = "README.md"
[tool.poetry]
packages = [
{ include = "src" }
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"