-
Notifications
You must be signed in to change notification settings - Fork 49
/
pyproject.toml
70 lines (65 loc) · 1.1 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
68
69
70
[project]
name = "django-concurrency"
version = "2.6.0"
description = "Optimistic lock implementation for Django. Prevents users from doing concurrent editing"
authors = [
{name = "sax", email = "s.apostolico@gmail.com"},
]
dependencies = []
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
dj4 = [
"django>=4.2,<5",
]
dj5 = [
"django>=5.1",
]
[tool.pdm]
[[tool.pdm.source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[tool.pdm.dev-dependencies]
dev = [
"black>=24.8.0",
"bump2version>=1.0.1",
"check-manifest",
"django-reversion",
"django-webtest",
"flake8",
"isort",
"mock",
"pre-commit",
"psycopg2-binary",
"pytest>=8.3.3",
"pytest-cov",
"pytest-django",
"pytest-echo",
"sphinx",
"sphinx-issues",
"tox",
"twine",
]
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| venv
| _build
| buck-out
| build
| dist
| migrations
| snapshots
)/
'''