-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.4 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
[project]
name = "django-auth-manager"
version = "0.1.1"
description = "Django extension for managing users and groups"
authors = [
{ name="Nadzeya H", email="[email protected]" },
]
license = { text="MIT license" }
readme = "README.md"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
[project.urls]
"Homepage" = "https://github.com/nadzyah/django-auth-manager"
"Bug Tracker" = "https://github.com/nadzyah/django-auth-manager/issues"
[tool.black]
line-length = 89
[tool.poetry]
name = "django-auth-manager"
version = "0.1.1"
description = "Django extension for managing users and groups"
authors = ["Nadzeya H <[email protected]>"]
license = "MIT license"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
pyyaml = "^6.0.1"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
twine = "^5.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"