-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
75 lines (67 loc) · 1.59 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tool.black]
line-length = 100
[tool.mypy]
allow_untyped_globals = true
follow_imports = "silent"
ignore_missing_imports = true
[tool.ruff]
# Pyflakes (F), pycodestyle (E, W), isort (I)
select = ["E", "F", "I", "W"]
line-length = 100
extend-exclude = ["./*/migrations", "manage.py", "./node_modules"]
[tool.ruff.per-file-ignores]
"./airone/tests/test_elasticsearch.py" = ["E501"]
[tool.poetry]
name = "airone"
version = "3.59.0"
description = ""
authors = ["Hiroyasu OHYAMA"]
license = "GPLv2"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
boto3 = "1.26.114"
celery = "5.2.2"
ddtrace = "1.2.1"
django-configurations = "2.3.2"
django-debug-toolbar = "3.2.4"
django-environ = "0.9.0"
django-filter = "2.4.0"
django-import-export = "2.5.0"
django-replicated = "2.7"
django-simple-history = "3.2.0"
django-storages = "1.13.2"
django = "3.2.20"
djangorestframework = "3.11.2"
drf-spectacular = "0.26.4"
elasticsearch = "7.17.6"
flower = "1.2.0"
gunicorn = "20.0.4"
kombu = "5.2.2"
mock = "2.0.0"
mysqlclient = "2.0.3"
natsort = "5.3.3"
python-ldap = "3.4.0"
python3-saml = "1.12.0"
pyyaml = "6.0"
requests = "2.31.0"
six = "1.15.0"
setproctitle = "1.3.2"
social-auth-app-django = "4.0.0"
social-auth-core = "3.3.0"
uritemplate = "3.0.1"
whitenoise = "5.2.0"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
coverage = "^7.3.0"
mypy = "^1.5.1"
requests-html = "0.10.0"
types-six = "^1.16.21.9"
types-requests = "^2.31.0.2"
types-pyyaml = "^6.0.12.11"
types-pytz = "^2023.3.0.1"
types-mock = "^5.1.0.1"
ruff = "^0.0.286"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"