-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 892 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 892 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
[tool.poetry]
name = "django-admin-edit-lock"
version = "0.4.0"
description = "django-admin-edit-lock is a Django application used in admin to prevent simultaneous edit by more than one users."
authors = ["Demetris Stavrou"]
packages = [
{ include = "admin_edit_lock" },
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/demestav/django-admin-edit-lock"
[tool.poetry.dependencies]
python = "^3.8"
Django = ">=2.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^21.5b2"
flake8 = "^3.9.2"
isort = "^5.8.0"
pytest-django = "^4.4.0"
pytest-pythonpath = "^0.7.3"
freezegun = "^1.1.0"
pre-commit = "^2.13.0"
coverage = "^5.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
source = ["admin_edit_lock"]
branch = true
[tool.coverage.report]
fail_under = 100
show_missing = true
skip_covered = true