forked from hmarr/django-debug-toolbar-mongo
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (27 loc) · 940 Bytes
/
setup.py
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
from setuptools import setup, find_packages
setup(
name='flask-debug-toolbar-mongo',
version=":versiontools:flask_debug_toolbar_mongo:",
description='MongoDB panel for the Flask Debug Toolbar',
long_description=open('README.rst').read(),
author='Harry Marr',
author_email='harry@hmarr.com',
url='https://github.com/hmarr/django-debug-toolbar-mongo',
license='MIT',
packages=find_packages(exclude=('example', )),
include_package_data=True,
zip_safe=False,
setup_requires=[
'versiontools >= 1.6',
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)