5 Commits

Author SHA1 Message Date
Nick Janetakis
45d3588bb6 Release 0.13.1 2022-03-29 18:39:20 -04:00
Nick Janetakis
15e8d77a49 Fix changelog formatting for 0.12.X 2022-03-29 18:10:40 -04:00
Nick Janetakis
4d84f262ae Merge pull request #172 from flask-debugtoolbar/fix-setupcfg
Move library into src/ directory
2022-03-29 18:08:01 -04:00
Nick Janetakis
db64ce632c Move library into src/ directory
After building this locally I noticed all of the expected files were in
the wheel where as before this patch it was missing a lot of files.

This idea of using a src/ directory is mentioned in the official Python
documentation for packaging files at:

https://packaging.python.org/en/latest/tutorials/packaging-projects/

It's also used in Flask and other large Python projects.
2022-03-29 08:18:21 -04:00
Jeff Widman
956d7501ec Bump version for development 2022-03-28 01:19:17 -07:00
181 changed files with 27 additions and 7 deletions

View File

@@ -1,19 +1,36 @@
Changes
=======
0.13.0 (Unreleased)
0.14.0 (Unreleased)
-------------------
Enhancements:
- ??
Fixes:
- ??
0.13.1 (2022-03-29)
-------------------
Fixes:
- Use a consistent version naming convention, 0.13 should have been 0.13.0 but it was yanked and you can't re-push yanked packages with the same version
0.13 (2022-03-29)
-------------------
Fixes:
- Correct `setup.cfg` to include package files by @nickjj in https://github.com/flask-debugtoolbar/flask-debugtoolbar/pull/172
0.12.1 (2022-03-28)
-------------------
Fixes:
- Correct changelog and docs URLs on PyPI
@@ -21,11 +38,13 @@ Fixes:
-------------------
Enhancements:
- Add flask.g section to show g object content. by @Yaser-Amiri in https://github.com/flask-debugtoolbar/flask-debugtoolbar/pull/118
- Support gzip response by @zaw007 in https://github.com/flask-debugtoolbar/flask-debugtoolbar/pull/154
- Update PyPI metadata files: add `setup.cfg` etc by @jeffwidman in https://github.com/flask-debugtoolbar/flask-debugtoolbar/pull/164
Fixes:
- Remove deprecated Jinja with_ extension for Jinja 3.0 (related to Flask 2.0) by @nickjj in https://github.com/flask-debugtoolbar/flask-debugtoolbar/pull/157
- Fix SQLAlchemy SELECT/EXPLAIN to use url_for to respect app prefixes.… by @mattaw in https://github.com/flask-debugtoolbar/flask-debugtoolbar/pull/143
- Setup DB properly by @jeffwidman in https://github.com/flask-debugtoolbar/flask-debugtoolbar/pull/148

View File

@@ -1,3 +1,3 @@
include LICENSE
recursive-include flask_debugtoolbar/templates *.html
recursive-include flask_debugtoolbar/static *
recursive-include src/flask_debugtoolbar/templates *.html
recursive-include src/flask_debugtoolbar/static *

View File

@@ -1,6 +1,6 @@
[metadata]
name = Flask-DebugToolbar
version = 0.12.1
version = 0.13.1
author = Michael van Tellingen
author_email = michaelvantellingen@gmail.com
maintainer = Matt Good
@@ -25,11 +25,12 @@ classifiers =
Topic :: Software Development :: Libraries :: Python Modules
[options]
package_dir =
= src
packages = find:
package_dir = = flask_debugtoolbar
include_package_data = True
python_requires = >=2.7
# Dependencies are in setup.py for GitHub's dependency graph.
[options.packages.find]
where = flask_debugtoolbar
where = src

Some files were not shown because too many files have changed in this diff Show More