forked from jazzband/django-permission
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
82 lines (73 loc) · 2.35 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
71
72
73
74
75
76
77
78
79
80
81
82
[tool.poetry]
name = "django-permission2"
version = "2.1.0"
description = "A simple permission system which enable logical permission systems in Django"
authors = ["Malte Gerth <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://django-permission2.readthedocs.io/"
repository = "https://github.com/JanMalte/django-permission2/"
documentation = "https://django-permission2.readthedocs.io/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = ["django","object","logical","permission"]
packages = [
{ include = "permission", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.8"
django-appconf = "^1.0.5"
Sphinx = {version = "5.3.0", optional = true}
sphinx-rtd-theme = {version = "1.3.0", optional = true}
[tool.poetry.dev-dependencies]
Django = "3.2.25"
tox = "4.23.2"
coverage = {extras = ["toml"], version = "^7.0.0"}
pre-commit = "^3.0.0"
black = "^23.0.0"
isort = "^5.10.1"
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-rtd-theme"]
[tool.poetry.urls]
Tracker = "https://github.com/JanMalte/django-permission2/issues/"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[flake8]
max-line-length = 102
[isort]
profile = "black"
[tool.coverage.run]
source = ["src/permission/", "tests/"]
branch = true
[tool.coverage.report]
show_missing = true
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
]