-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (49 loc) · 1.07 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
[tool.poetry]
name = "prosept-team2"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
django = "^4.2.7"
djangorestframework = "^3.14.0"
djangorestframework-simplejwt = "^5.3.0"
python-dotenv = "^1.0.0"
psycopg2-binary = "^2.9.9"
django-filter = "^23.4"
gunicorn = "^21.2.0"
drf-spectacular = "^0.26.5"
django-cors-headers = "^4.3.1"
djoser = "^2.2.2"
pandas = "^2.1.3"
scikit-learn = "^1.3.2"
nltk = "^3.8.1"
[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
ruff = "^0.1.6"
isort = "^5.12.0"
pre-commit = "^3.5.0"
pytest-django = "^4.7.0"
coverage = "^7.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py311']
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 = "py311"
exclude = [
"*migrations/",
"settings.py",
]
line-length = 79