-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.08 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
[project]
name = "Quart-HTTPAuth"
version = "1.0.0"
authors = [
{ name = "Collins Kiplagat", email = "[email protected]" }
]
description = "Quart-HTTPAuth is a HTTP authentication library for Quart.This was modified from Flask-HTTPAuth."
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: MicroPython",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"quart",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/collinsmarra/Quart-HTTPAuth"
"Bug Tracker" = "https://github.com/collinsmarra/Quart-HTTPAuth/issues"
[project.optional-dependencies]
docs = [
"sphinx",
]
[tool.setuptools]
zip-safe = false
include-package-data = true
py-modules = [
"quart_httpauth",
]
[tool.setuptools.package-dir]
"" = "src"
[build-system]
requires = [
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"