-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
73 lines (66 loc) · 1.6 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
allow_untyped_globals = true
follow_imports = "silent"
ignore_missing_imports = true
[tool.ruff]
# Pyflakes (F), pycodestyle (E, W), isort (I)
lint.select = ["E", "F", "I", "W"]
line-length = 100
extend-exclude = ["./*/migrations", "manage.py", "./node_modules"]
[tool.ruff.lint.per-file-ignores]
"./airone/tests/test_elasticsearch.py" = ["E501"]
[tool.poetry]
name = "airone"
version = "3.73.0"
description = ""
authors = ["Hiroyasu OHYAMA"]
license = "GPLv2"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
boto3 = "1.26.114"
celery = "5.2.2"
django-configurations = "2.4.1"
ddtrace = "2.1.1"
django-debug-toolbar = "3.2.4"
django-environ = "0.9.0"
django-filter = "2.4.0"
django-import-export = "3.3.1"
django-replicated = "2.7"
django-simple-history = "3.2.0"
django-storages = "1.14.1"
django = "4.2.16"
djangorestframework = "3.15.2"
drf-spectacular = "0.26.4"
elasticsearch = "7.17.6"
flower = "1.2.0"
gunicorn = "22.0.0"
kombu = "5.2.2"
lxml_html_clean = "0.1.1"
mock = "2.0.0"
mysqlclient = "2.1.0"
natsort = "5.3.3"
python-ldap = "3.4.0"
python3-saml = "1.12.0"
pyyaml = "6.0.1"
requests = "2.32.0"
setproctitle = "1.3.2"
social-auth-app-django = "5.4.1"
social-auth-core = "4.5.1"
uritemplate = "3.0.1"
whitenoise = "5.2.0"
pydantic = "^2.6.4"
[tool.poetry.group.dev.dependencies]
coverage = "^7.3.0"
mypy = "^1.10.0"
requests-html = "0.10.0"
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.4.8"
tblib = "^3.0.0"
lxml-html-clean = "^0.1.1"