-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (39 loc) · 968 Bytes
/
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
[project]
name = "spybot2"
version = "0.1.0"
description = ""
authors = [
{ name = "Benno", email = "[email protected]" },
{ name = "Justus", email = "[email protected]" },
]
classifiers = ["License :: OSI Approved :: MIT License"]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"Django ~=5.1",
"ts3 ~=2.0.0b3",
"django-environ ~=0.12.0",
"num2words ~=0.5.12",
"requests ~=2.31",
"fido2 ~=1.1",
"user-agents ~=2.2",
"django-bootstrap5 ~=24.2",
"sentry-sdk>=2.13.0",
"gunicorn>=23.0.0",
"psycopg2-binary>=2.9.10",
"celery>=5.4.0",
"redis>=5.2.1",
]
[tool.uv]
dev-dependencies = [
"unittest-xml-reporting ~=3.2",
"testcontainers[postgres]>=4.9.0",
"ruff>=0.9.7",
"pre-commit>=4.1.0",
"coverage>=7.6.12",
]
[tool.setuptools]
py-modules = []
[tool.coverage]
run = { source = ["."], omit = ["*/.venv/*"] }
report = { include_namespace_packages = true, show_missing = true}