mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2026-01-03 04:00:03 -06:00
14 lines
283 B
Python
14 lines
283 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',
|
|
'MarkupSafe',
|
|
],
|
|
)
|