-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
31 lines (29 loc) · 1.01 KB
/
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
29
30
31
from setuptools import setup
from querycount import __version__
url = "https://github.com/bradmontgomery/django-querycount/tarball/{0}".format(__version__)
setup(
name="django-querycount",
version=__version__,
author="Brad Montgomery",
author_email="[email protected]",
description=("Middleware that Prints the number of DB queries to the runserver console."),
install_requires=[],
license="MIT",
keywords="django querycount database performance",
url=url,
packages=[
"querycount",
],
long_description="this project gives you a middleware that"
"prints DB query counts in Django's runserver console output.",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
"Topic :: Utilities",
],
)