-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 876 Bytes
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 876 Bytes
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
[build-system]
requires = ["uv_build>=0.11.9,<0.12"]
build-backend = "uv_build"
[project]
name = "analytics-pulpproject-org"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"django==5.2.14",
"gitpython==3.1.50",
"gunicorn==26.0.0",
"packaging==26.2",
"protobuf==7.34.1",
"psycopg==3.3.4",
"whitenoise==6.12.0",
]
classifiers = [
"private :: Do Not Upload"
]
[dependency-groups]
dev = [
{include-group = "lint"},
{include-group = "test"},
]
lint = [
"ruff>=0.15.10",
]
test = [
"pytest-django==4.12.0",
]
[tool.uv.build-backend]
module-name = ["app", "pulpanalytics"]
module-root = ""
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "app.settings"
[tool.ruff]
line-length = 100
extend-exclude = ["*_pb2.py"]
[tool.ruff.lint]
extend-select = ["I"]