forked from hmarr/django-debug-toolbar-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 906 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
from setuptools import setup, find_packages
setup(
name='django-debug-toolbar-mongo',
version=":versiontools:debug_toolbar_mongo:",
description='MongoDB panel for the Django Debug Toolbar',
long_description=open('README.rst').read(),
author='Harry Marr',
author_email='[email protected]',
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=[
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)