-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
40 lines (35 loc) · 939 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
[tool.poetry]
name = "django-bpmn-engine"
version = "0.1.0"
description = ""
authors = ["Nilson Rossi <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10"
dateparser = "^1.1.1"
lxml = "^4.9.1"
pytz = "^2022.2.1"
Jinja2 = "^3.1.2"
Django = "4.0"
djangorestframework = "^3.13.1"
psycopg2-binary = "^2.9.3"
django-filter = "^22.1"
drf-spectacular = "^0.23.1"
python-json-logger = "^2.0.4"
spiffworkflow = {git = "https://github.com/sartography/SpiffWorkflow", rev = "main"}
celery = "^5.2.7"
django-celery-results = "^2.4.0"
django-celery-beat = "^2.3.0"
django-cacheops = "^6.1"
django-jsonform = "^2.12.0"
[tool.poetry.dev-dependencies]
[tool.isort]
force_single_line = true
line_length = 120
skip_glob = "**/migrations/*.py"
use_parentheses = true
multi_line_output = 5
include_trailing_comma = true
lines_between_types = 1
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"