-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 910 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 910 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
[tool.poetry]
name = "blogapi"
version = "0.1.0"
description = ""
authors = ["SherlockH0 <ddmlf7@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
django = "^5.1.2"
django-split-settings = "^1.3.2"
pyyaml = "^6.0.2"
psycopg2 = "^2.9.10"
django-ninja = "^1.3.0"
django-ninja-jwt = "^5.3.4"
django-ninja-extra = "^0.21.4"
isodate = "^0.7.2"
google-generativeai = "^0.8.3"
django-rq = "^3.0.0"
rq-scheduler = "^0.14.0"
django-types = "^0.19.1"
pytest-django = "^4.9.0"
pytest-cov = "^5.0.0"
model-bakery = "^1.20.0"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "blogapi.project.settings"
django_find_project = false
python_files = "test_*.py"
testpaths = ["blogapi"]
filterwarnings = "ignore::DeprecationWarning:^(?!node\\.).*:"
[flake8]
max-line-length = 88
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"