-
-
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
6f3f889
commit d70e25c
Showing
4 changed files
with
51 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
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,50 @@ | ||
[project] | ||
name = "Flask-Migrate" | ||
version = "4.0.6.dev0" | ||
authors = [ | ||
{ name = "Miguel Grinberg", email = "miguel.grinberg@gmail.com" }, | ||
] | ||
description = "SQLAlchemy database migrations for Flask applications using Alembic." | ||
classifiers = [ | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
requires-python = ">=3.6" | ||
dependencies = [ | ||
"Flask >= 0.9", | ||
"Flask-SQLAlchemy >= 1.0", | ||
"alembic >= 1.9.0", | ||
] | ||
|
||
[project.license] | ||
text = "MIT" | ||
|
||
[project.readme] | ||
file = "README.md" | ||
content-type = "text/markdown" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/miguelgrinberg/flask-migrate" | ||
"Bug Tracker" = "https://github.com/miguelgrinberg/flask-migrate/issues" | ||
|
||
[tool.setuptools] | ||
zip-safe = false | ||
include-package-data = true | ||
|
||
[tool.setuptools.package-dir] | ||
"" = "src" | ||
|
||
[tool.setuptools.packages.find] | ||
where = [ | ||
"src", | ||
] | ||
namespaces = true | ||
|
||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel" | ||
"setuptools>=61.2", | ||
] | ||
build-backend = "setuptools.build_meta" |