1 Star 0 Fork 0

stoneqp/flask-debugtoolbar

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.35 KB
一键复制 编辑 原始数据 按行查看 历史
Jeff Widman 提交于 2020-02-18 01:21 . pycodestyle fixes
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
except Exception:
README = ''
CHANGES = ''
setup(
name='Flask-DebugToolbar',
version='0.12.dev0',
url='https://flask-debugtoolbar.readthedocs.io/',
license='BSD',
author='Michael van Tellingen',
author_email='michaelvantellingen@gmail.com',
maintainer='Matt Good',
maintainer_email='matt@matt-good.net',
description='A toolbar overlay for debugging Flask applications.',
long_description=README + '\n\n' + CHANGES,
zip_safe=False,
platforms='any',
include_package_data=True,
packages=[
'flask_debugtoolbar',
'flask_debugtoolbar.panels'
],
install_requires=[
'Flask>=0.8',
'Blinker',
'itsdangerous',
'werkzeug',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/stoneqp/flask-debugtoolbar.git
git@gitee.com:stoneqp/flask-debugtoolbar.git
stoneqp
flask-debugtoolbar
flask-debugtoolbar
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385