-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
29 lines (27 loc) · 1022 Bytes
/
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
[build-system]
requires = ["setuptools>=65", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "django_advanced_password_validation"
description = "Extends Django password validation options in an attempt to keep up with industry standards for strong user passwords."
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["django", "password", "validator"]
authors = [
{name = "Ezra Rice", email = "[email protected]"},
]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
version = "1.2.0"
[project.urls]
repository = "https://github.com/ezrajrice/django_advanced_password_validation"