-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 949 Bytes
/
Copy pathpyproject.toml
File metadata and controls
50 lines (43 loc) · 949 Bytes
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
[tool.poetry]
name = "hack-devrel"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
django = "4.2"
djangorestframework = "^3.14.0"
python-dotenv = "^1.0.0"
psycopg2-binary = "^2.9.9"
drf-spectacular = "^0.27.0"
django-cors-headers = "^4.3.1"
djoser = "^2.2.2"
gunicorn = "^21.2.0"
django-filter = "^23.5"
[tool.poetry.group.dev.dependencies]
black = "^23.12.0"
ruff = "^0.1.8"
isort = "^5.13.2"
pre-commit = "^3.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py310']
exclude = 'migrations'
line_length = 79
[tool.isort]
line_length = 79
skip = ['migrations', 'settings']
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
[tool.ruff]
target-version = "py310"
exclude = [
"*migrations/",
"settings.py",
]
line-length = 79