-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 943 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
[tool.poetry]
name = "kulutused"
version = "0.1.0"
description = ""
authors = ["Karlis Suvi <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.11"
django = "^4.2"
django-bootstrap5 = "^23.1"
django-crispy-forms = "^2.0"
django-environ = "^0.10.0"
argon2-cffi = "^21.3.0"
crispy-bootstrap5 = "^0.7"
django-bootstrap-icons = "^0.8.3"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
pep8-naming = "^0.13.3"
flake8-todo = "^0.7"
flake8-string-format = "^0.3.0"
flake8-tidy-imports = "^4.8.0"
flake8-import-order = "^0.18.2"
flake8-docstrings = "^1.7.0"
flake8-bugbear = "^23.3.23"
flake8-bandit = "^4.1.1"
flake8-annotations = "^3.0.0"
taskipy = "^1.10.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.taskipy.tasks]
lint = "flake8"
start = "python manage.py runserver"
makemigrations = "python manage.py makemigrations"
migrate = "python manage.py migrate"