-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (56 loc) · 1.59 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
[tool.poetry]
name = "django-boilerplate"
version = "0.1.0"
description = "Este projeto de boilerplate em Django fornece uma estrutura básica para o desenvolvimento de aplicações web. Ele inclui a configuração inicial de banco de dados, autenticação de usuário, administração, etc."
authors = ["Leonardo Veras <verasleonardo210@gmail.com>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
django = "^5.1.1"
django-debug-toolbar = "^4.4.6"
django-environ = "^0.11.2"
djangorestframework = "^3.15.2"
django-filter = "^24.3"
drf-yasg = "^1.21.7"
psycopg2-binary = "^2.9.9"
django-rosetta = "^0.10.1"
setuptools = "^66.1.1"
django-unfold = "^0.50.0"
gunicorn = "^23.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-django = "^4.9.0"
ruff = "^0.6.9"
[tool.poetry.group.dev]
optional = true
[tool.ruff]
line-length=80
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"N", # PEP8 naming convetions
"PL",
"PT"
]
ignore = [
"C901", # too complex
"W191", # indentation contains tabs
"D401", # imperative mood
]
[tool.ruff.lint.per-file-ignores]
"*/migrations/*.py" = ["E501"]
"config/settings/production.py" = ["F405", "F403"]
"config/settings/development.py" = ["F405", "F403"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.settings.base"
python_files = ["test*.py", "*.p_testy"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"