mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2025-12-30 18:19:31 -06:00
Update to the newer PyPI / python packaging metadata file structure. A lot of this was cribbed from how [`Flask`](https://github.com/pallets/flask) itself exposes its metadata.
13 lines
261 B
Python
13 lines
261 B
Python
from setuptools import setup
|
|
|
|
# Metadata goes in setup.cfg. These are here for GitHub's dependency graph.
|
|
setup(
|
|
name="Flask-DebugToolbar",
|
|
install_requires=[
|
|
'Flask>=0.8',
|
|
'Blinker',
|
|
'itsdangerous',
|
|
'werkzeug',
|
|
],
|
|
)
|