-
-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate Python package metadata to pyproject.toml
- Loading branch information
1 parent
36e85e8
commit 52a13b1
Showing
4 changed files
with
47 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
include README.md LICENSE | ||
recursive-include tests *.py | ||
include README.md LICENSE tox.ini | ||
recursive-include docs * | ||
recursive-exclude docs/_build * | ||
recursive-include tests * | ||
exclude **/*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,47 @@ | ||
[project] | ||
name = "Flask-HTTPAuth" | ||
version = "4.8.1.dev0" | ||
authors = [ | ||
{ name = "Miguel Grinberg", email = "[email protected]" }, | ||
] | ||
description = "HTTP authentication for Flask routes" | ||
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 = [ | ||
"flask", | ||
] | ||
|
||
[project.readme] | ||
file = "README.md" | ||
content-type = "text/markdown" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/miguelgrinberg/flask-httpauth" | ||
"Bug Tracker" = "https://github.com/miguelgrinberg/flask-httpauth/issues" | ||
|
||
[project.optional-dependencies] | ||
docs = [ | ||
"sphinx", | ||
] | ||
|
||
[tool.setuptools] | ||
zip-safe = false | ||
include-package-data = true | ||
py-modules = [ | ||
"flask_httpauth", | ||
] | ||
|
||
[tool.setuptools.package-dir] | ||
"" = "src" | ||
|
||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel" | ||
"setuptools>=61.2", | ||
] | ||
build-backend = "setuptools.build_meta" |