-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (47 loc) · 1.2 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.poetry]
authors = ["Guilhem Saurel <[email protected]>"]
description = "Gepetto Software Development Dashboard"
license = "BSD-2-Clause"
name = "dashboard"
version = "0.1.0"
[tool.poetry.dependencies]
GitPython = "^3.1.43"
PyGithub = "^2.4.0"
django = "^5.1.1"
django-auth-ldap = "^4.8.0"
django-filter = "^24.3"
django-tables2 = "^2.7.0"
djangorestframework = "^3.15.2"
hiredis = "^3.0.0"
httpx = "^0.24.1"
ipython = "^8.28.0"
ndh = "^6.9.1"
python = "^3.10"
python-gitlab = "^4.12.2"
redis = "^5.1.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
coverage = "^7.6.1"
pre-commit = "^4.0.0"
ruff = "^0.2.1"
[tool.poetry.group.noprod]
optional = true
[tool.poetry.group.noprod.dependencies]
psycopg2-binary = "^2.9.9"
[tool.poetry.group.prod]
optional = true
[tool.poetry.group.prod.dependencies]
gunicorn = "^23.0.0"
psycopg2 = "^2.9.9"
[tool.ruff]
extend-exclude = ["migrations"]
target-version = "py310"
[tool.ruff.lint]
extend-ignore = ["D203", "D213"]
extend-select = ["A", "B", "C", "COM", "DJ", "EM", "EXE", "G", "N", "PTH", "RET", "RUF", "UP", "W", "YTT"]
[tool.tomlsort]
all = true