-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.12 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "django-admin-form-action"
packages = [
{ include = "admin_form_action" },
{ include = "admin_form_action/py.typed" },
]
license = "MIT"
version = "1.0.0"
description = "Parametrized actions for Django admin site"
authors = ["Dmitry Kolyagin <[email protected]>"]
repository = "https://github.com/pauk-slon/django-admin-form-action"
readme = "README.md"
keywords = ["django", "admin", "action"]
classifiers = [
"Framework :: Django :: 3",
"Framework :: Django :: 4"
]
[tool.poetry.dependencies]
python = "^3.8"
django = ">=3"
[tool.poetry.group.dev.dependencies]
model-bakery = "*"
pytest = "*"
pytest-django = "*"
pytest-cov = "*"
isort = "*"
ruff = "*"
mypy = "*"
django-stubs = {extras = ["compatible-mypy"], version = "*"}
django-stubs-ext = "*"
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
[tool.django-stubs]
django_settings_module = "tests.app.settings"
[tool.pytest.ini_options]
addopts = [
"--ds=tests.app.settings",
"--cov=admin_form_action",
"--cov-report=term-missing:skip-covered",
]