-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
31 lines (28 loc) · 1005 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
29
30
31
from setuptools import setup
import os
root_dir = os.path.dirname(__file__)
if not root_dir:
root_dir = '.'
long_desc = open(root_dir + '/README.rst').read()
setup(
name='djangosampler',
version='0.10.0',
description='Samples a percentage of SQL queries and groups them together for easy viewing',
url='https://github.com/colinhowe/djangosampler',
author='Colin Howe',
author_email='[email protected]',
packages=['djangosampler', 'djangosampler.plugins', 'djangosampler.migrations'],
package_data={'djangosampler': ['templates/djangosampler/*','static/djangosampler/*']},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
license='Apache 2.0',
long_description=long_desc,
)