-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 992 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
41
42
[tool.poetry]
name = "todo"
version = "0.1.0"
description = "Turing complete to-do list"
authors = ["TheArtur128 <88573504+TheArtur128@users.noreply.github.com>"]
license = "Apache-2.0 license"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
django = "^4.2.11"
act4 = "^3.2.0"
django-redis = "^5.4.0"
redis = "^5.0.1"
psycopg = {extras = ["binary"], version = "^3.1.18"}
event-bus = "^1.0.2"
djangorestframework = "^3.14.0"
markdown = "^3.5.2"
django-filter = "^24.1"
sqlparse = "^0.5.0"
typenv = "^0.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
pytest-django = "^4.7.0"
ruff = "^0.1.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 80
ignore-init-module-imports = true
exclude = ["*/migrations/*"]
[tool.ruff.extend-per-file-ignores]
"__init__.py" = ["F401"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.settings"
python_files = ["apps/*/tests.py", "apps/*/tests/test_*.py"]