-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
73 lines (66 loc) · 1.38 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = [
"setuptools",
"setuptools-scm",
]
build-backend = "setuptools.build_meta"
[project]
name = "swoop"
authors = [
{name = "Jarrett Keifer", email = "[email protected]"},
]
description = "STAC Workflow Open Orchestration Framework"
requires-python = ">=3.11"
keywords = [
"stac",
"workflow",
"geospatial",
]
license = {text = "Apache License 2.0"}
classifiers = [
"Framework :: FastAPI",
"Programming Language :: Python :: 3",
]
dependencies = [
"asyncpg >=0.28.0",
"buildpg >=0.4",
"fastapi >=0.103.1",
"iso8601 >=2.0.0",
"jsonschema >=4.19.0",
"minio >=7.1.16",
"pydantic >=2.4.0",
"pydantic-settings >=2.0.3",
"pyyaml >=6.0.1",
"swoop.db >=8.0.3",
"uvicorn >=0.23.2",
]
dynamic = [
"version",
"readme",
]
[project.optional-dependencies]
dev = [
"pre-commit >=3.1.1",
"pre-commit-hooks >=4.4.0",
"black >=23.1.0",
"httpx >=0.24.0",
"ruff >=0.0.253",
"mypy >=1.0.1",
"pip-tools >=6.12.3",
"pytest >=7.2.2",
"pytest-asyncio >=0.21.0",
"pytest-cov >=4.0.0",
"pyupgrade >=3.3.1",
"sqlfluff >=2.0.3",
"isort >=5.12.0",
]
[tool.setuptools_scm]
[tool.setuptools.dynamic]
version = {attr = "swoop.api.__version__"}
readme = {file = "README.md"}
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
[tool.ruff]
ignore = ["E501"]