-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
161 additions
and
92 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
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,10 +1,10 @@ | ||
/.idea/ | ||
/.vscode/ | ||
/.venv*/ | ||
/venv*/ | ||
.idea/ | ||
.vscode/ | ||
.venv*/ | ||
venv*/ | ||
__pycache__/ | ||
/dist/ | ||
/.coverage* | ||
/htmlcov/ | ||
/.tox/ | ||
/docs/_build/ | ||
dist/ | ||
.coverage* | ||
htmlcov/ | ||
.tox/ | ||
docs/_build/ |
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,19 +1,16 @@ | ||
[project] | ||
name = "Flask-Alembic" | ||
version = "3.1.0" | ||
description = "Flask extension to integrate Alembic with Flask-SQLAlchemy." | ||
version = "3.1.0.dev" | ||
description = "Integrate Alembic with Flask." | ||
readme = "README.md" | ||
license = { file = "LICENSE.txt" } | ||
authors = [{name = "David Lord", email = "[email protected]"},] | ||
authors = [{ name = "David Lord" }] | ||
maintainers = [{ name = "Pallets", email = "[email protected]" }] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Web Environment", | ||
"Framework :: Flask", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Topic :: Database", | ||
"Typing :: Typed", | ||
] | ||
requires-python = ">=3.9" | ||
|
@@ -24,9 +21,11 @@ dependencies = [ | |
] | ||
|
||
[project.urls] | ||
Donate = "https://palletsprojects.com/donate" | ||
Documentation = "https://flask-alembic.readthedocs.io" | ||
Changes = "https://flask-alembic.readthedocs.io/changes/" | ||
Source = "https://github.com/davidism/flask-alembic/" | ||
Changes = "https://flask-alembic.readthedocs.io/page/changes/" | ||
Source = "https://github.com/pallets-eco/flask-alembic/" | ||
Chat = "https://discord.gg/pallets" | ||
|
||
[build-system] | ||
requires = ["flit_core<4"] | ||
|
@@ -56,11 +55,11 @@ strict = true | |
[tool.pyright] | ||
pythonVersion = "3.9" | ||
include = ["src/flask_alembic", "tests"] | ||
typeCheckingMode = "basic" | ||
|
||
[tool.ruff] | ||
src = ["src"] | ||
fix = true | ||
unsafe-fixes = true | ||
show-fixes = true | ||
output-format = "full" | ||
|
||
|
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,12 +1,18 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.12 | ||
# This file is autogenerated by pip-compile with Python 3.9 | ||
# by the following command: | ||
# | ||
# pip-compile build.in | ||
# | ||
build==1.2.1 | ||
# via -r build.in | ||
packaging==23.2 | ||
importlib-metadata==7.1.0 | ||
# via build | ||
pyproject-hooks==1.0.0 | ||
packaging==24.1 | ||
# via build | ||
pyproject-hooks==1.1.0 | ||
# via build | ||
tomli==2.0.1 | ||
# via build | ||
zipp==3.19.2 | ||
# via importlib-metadata |
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
Oops, something went wrong.