-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (60 loc) · 1.36 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
[tool.poetry]
name = "djunk"
version = "0.2.0"
description = "My personal 'junk drawer' of reusable Django apps and related snippets."
authors = ["Jordan Eremieff <jordan@eremieff.com>"]
license = "MIT"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-v --durations=10 -p no:logging -s --reuse-db --ignore .venv"
testpaths = ["tests"]
pythonpath = [".", "djunk"]
DJANGO_SETTINGS_MODULE = "djunk.settings.local"
norecursedirs = [
"data",
"static",
"node_modules",
"bin",
"dist",
"build",
"docs",
".mypy_cache",
".pytest_cache",
".secret",
".txt",
".idea",
".git",
".venv",
"*.egg",
".eggs",
".git",
".github",
".poetry",
"__pycache__",
]
[tool.poetry.dependencies]
python = "^3.10"
Django = "^4.0.4"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
rich = "^12.2.0"
black = "^22.3.0"
django-stubs = "^1.10.1"
pytest-django = "^4.5.2"
django-click = "^2.3.0"
django-debug-toolbar = "^3.2.4"
django-extensions = "^3.1.5"
mypy = "^0.942"
flake8-eradicate = "^1.2.1"
flake8-pytest-style = "^1.6.0"
flake8-django = "^1.1.2"
flake8-comprehensions = "^3.9.0"
flake8-return = "^1.1.3"
flake8-builtins = "^1.5.3"
flake8-bugbear = "^22.4.25"
flake8-broken-line = "^0.4.0"
flake8-isort = "^4.1.1"
flake8-print = "^5.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"