-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (48 loc) · 1.35 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
[tool.poetry]
name = "Artaxerxes"
version = "0.1.0"
description = ""
authors = []
[tool.poetry.dependencies]
python = "^3.6"
django = "^2.2"
django-reversion = "*"
django-allauth = "*"
django-konst = "*"
django-airplane = "^1.0.0"
django-phonenumber-field = {extras = ["phonenumbers"], version = "^4.0.0"}
# Use git master for unreleased BCC support, see https://github.com/perenecabuto/django-sendmail-backend/issues/14
django_sendmail_backend = { git = "https://github.com/perenecabuto/django-sendmail-backend", rev = "43d239f" }
poetry = {version = "^1.0.7", optional = true}
mysqlclient = {version = "^1.4.6", optional = true}
django-hijack = "^2.1.10"
django-hijack-admin = "^2.1.10"
django-with-asserts = "^0.0.1"
django-crispy-forms = "^1.12.0"
Pillow = "^8.3.2"
django-import-export = "^2.6.0"
mollie-api-python = "^2.10.0"
django-sql-utils = "^0.6.1"
django-mathfilters = "^1.0.0"
django-weasyprint = "^2.1.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.7"
coverage = "*"
flake8-bugbear = "*"
flake8-comprehensions = "*"
flake8-mutable = "*"
flake8-mypy = "*"
flake8-docstrings = "*"
flake8-print = "*"
flake8-tuple = "*"
flake8-commas = "*"
flake8-isort = "*"
pyyaml = "*"
django-debug-toolbar = "*"
factory_boy = "^2.12"
bpython = "^0.18"
parameterized = "^0.7.1"
[tool.isort]
skip = ["manage.py", "arta/wsgi.py", "lib"]
skip_glob = "*/migrations"
line_length = 119