-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.39 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "django-prbac"
description = "Parameterized Role-Based Access Control for Django"
readme = { file = "README.rst", content-type = "text/x-rst" }
authors = [{ name = "Dimagi", email = "dev@dimagi.com" }]
license-files = ["LICENSE"]
dynamic = ["version"]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"django",
"jsonfield",
"simplejson",
]
[project.urls]
Homepage = "http://github.com/dimagi/django-prbac"
Repository = "https://github.com/dimagi/django-prbac"
[tool.setuptools.packages.find]
include = ["django_prbac*"]
[tool.setuptools.dynamic]
version = { attr = "django_prbac.__version__" }