-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathpyproject.toml
More file actions
115 lines (107 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
115 lines (107 loc) · 2.06 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[project]
name = "balrog"
version = "3.104"
description = "Mozilla's Update Server"
license = "MPL-2.0"
authors = [
{ name = "Mozilla Release Engineering", email = "release+python@mozilla.com" }
]
readme = "README.rst"
requires-python = ">=3.13"
dependencies = [
"aiohttp",
"arrow",
"auth0-python>=5",
"connexion<3",
"deepmerge",
"ecdsa",
"flask",
"flask_wtf",
"gcloud-aio-storage",
"google-api-core",
"google-auth",
"google-cloud-storage",
"jsonschema>=4.5.0",
"mozilla-version",
"mysqlclient",
"orjson",
"pyjwt[crypto]",
"python-jose",
"redis",
"repoze.lru",
"requests",
"requests-hawk",
"sentry-sdk[flask]",
# sqlalchemy-migrate tries to import pkg_resources which doesn't exist anymore after setuptools 82
"setuptools<82",
"spec-synthase",
"sqlalchemy-migrate",
"sqlalchemy<2",
"statsd",
"swagger-spec-validator",
"uwsgi",
]
[tool.uv.workspace]
members = [
"agent",
]
[dependency-groups]
dev = [
# held back due to https://github.com/psf/black/issues/4963
"black<26.1.0",
"coverage",
"coveralls",
"fakeredis",
"flake8",
"flake8-black",
# https://github.com/HypothesisWorks/hypothesis/issues/4638
"hypothesis<6.150.0",
"isort",
"mock",
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-responses",
"pytest-xdist",
"tox",
"tox-uv",
]
docs = [
"sphinx",
"sphinx_rtd_theme>=3.1.0rc1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/auslib"]
[tool.black]
line-length = 160
target-version = ["py38"]
include = '\.(wsgi|pyi?)$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.cache
| \.cache_py3
| _build
| buck-out
| build
| dist
| ui
)/
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 160
[tool.pytest.ini_options]
asyncio_mode="auto"
asyncio_default_fixture_loop_scope="function"