forked from kevinbeaty/flask-debug-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 925 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as README:
long_description = README.read()
setup(
name='Flask-Debug-API',
version='0.1.0',
url='http://github.com/kevinbeaty/flask-debug-api',
license='MIT',
author='Kevin Beaty',
author_email='kevin@simplectic.com',
description='API Browser for Flask-DebugToolbar',
long_description=long_description,
packages=['flask_debug_api'],
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=['Flask-DebugToolbar'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules']
)