generated from unity-sds/unity-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (64 loc) · 1.69 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
74
75
76
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "unity-sps-ogc-processes-api"
version = "1.0.0"
authors = [
{ name = "Drew Meyers", email = "[email protected]" },
]
description = "The Unity science processing service area's OGC Processes API."
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
]
dependencies = [
"requests==2.31.0",
"fastapi==0.110.0",
"pydantic==2.6.4",
"SQLAlchemy==2.0.28",
"pydantic-settings==2.0.0",
"uvicorn==0.27.1",
"psycopg2-binary==2.9.9",
"redis==5.0.4",
"apache-airflow-client @ git+https://github.com/apache/[email protected]",
"jsonschema==4.23.0"
]
[project.license]
text = "Apache-2.0"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/unity-sds/unity-sps-ogc-processes-api"
[project.optional-dependencies]
develop = [
"datamodel-code-generator==0.25.5"
]
test = [
"pytest==8.0.2",
"pytest-dependency==0.6.0",
"httpx==0.23.0",
"requests-mock==1.12.1",
"pyfakefs==5.4.1",
"fakeredis[lua]==2.23.1"
]
experiment = []
[tool.setuptools.packages.find]
exclude = ["tests*"]
namespaces = false
[tool.isort]
line_length = 110
[tool.black]
line-length = 110
[tool.ruff]
line-length = 110
[tool.ruff.lint]
ignore = ["E501", "E402", "E731"]
[tool.bandit.assert_used]
skips = ['*_test.py', '*/test_*.py']