-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (48 loc) · 1.33 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-rapyd-modernauth"
description = "A Django application that provides a custom User model where the username is the email address."
version = "0.0.5"
authors = [
{ name="Karthic Raghupathi", email="[email protected]" },
]
readme = "readme.md"
requires-python = ">=3.11"
dependencies = [
"Django>=4.2,<4.3"
]
keywords = ["django", "auth", "custom", "model", "rapyd"]
license = {file = "LICENSE"}
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
Homepage = "https://github.com/karthicraghupathi/django_rapyd_modernauth"
Issues = "https://github.com/karthicraghupathi/django_rapyd_modernauth/issues"
[tool.setuptools]
packages = ["modernauth"]
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''