-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (59 loc) · 1.3 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
66
67
[tool.poetry]
name = "headless-django-bootstrap"
version = "0.1.0"
description = ""
authors = ["Tyler Churchill"]
readme = "README.md"
[tool.poetry.dependencies]
python = "3.11.1"
django = "4.1.3"
psycopg2 = "2.9.5"
uvicorn = "0.20.0"
gunicorn = "20.1.0"
djangorestframework = "3.14.0"
django-filter = "22.1"
djangorestframework-stubs = "1.8.0"
drf-spectacular = {extras = ["sidecar"], version = "0.25.1"}
djangorestframework-simplejwt = "5.2.2"
django-extensions = "3.2.1"
graphene-django = "3.0.0"
[tool.poetry.group.dev.dependencies]
pytest-django = "4.5.2"
factory-boy = "3.2.1"
pytest = "7.2.0"
django-stubs = "1.13.1"
black = "22.10.0"
flake8 = "6.0.0"
pylint = "2.15.8"
mypy = "0.990"
snapshottest = "0.6.0"
isort = "5.11.4"
pytest-xdist = "3.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--nomigrations --ds=apps.settings"
pythonpath = [
"apps"
]
testpaths = [
"tests/unit",
"tests/integration",
]
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
[[tool.mypy.overrides]]
module = [
"factory",
"rest_framework_simplejwt.*",
"graphene",
"graphene_django.*",
"snapshottest"
]
ignore_errors = true
[tool.django-stubs]
django_settings_module = "apps.settings"
[virtualenvs]
create = false