-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (50 loc) · 953 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
43
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "dbs_tester"
version = "1.12.1"
description = "DBS tester application"
authors = [
"Jakub Dubec <[email protected]>"
]
license = "GPL-3.0"
[tool.poetry.dependencies]
python = "^3.11"
django = "^5.0"
python-dotenv = "^1"
argon2-cffi = "^23.0"
sentry-sdk = "^1"
psycopg = {version = "^3.1", extras = ["c"]}
redis = "^5.0"
django-rq = "^2.7"
requests = "==2.29.0"
django-bootstrap5 = "^23.4"
Markdown = "^3.4.1"
pygal = "^3.0.0"
python-ldap = "^3.4.3"
docker = "^7.0"
python-crontab = "^3.0"
porcupine-python = "^0.5.0"
django-api-forms = "1.0.0rc9"
django-admin-extra-buttons = "^1.5.7"
[tool.poetry.dev-dependencies]
black = "^24.0"
[tool.black]
line-length = 119
target-version = ['py312']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.github
| venv
| data
| logs
| media
| private
| static
| conf
| \.stoplight
)/
'''
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"