forked from jmoiron/django-slow-log
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·47 lines (41 loc) · 1.27 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script for django-slow-log."""
from setuptools import setup, find_packages
import sys, os
version = '0.6.1'
# some trove classifiers:
# License :: OSI Approved :: MIT License
# Intended Audience :: Developers
# Operating System :: POSIX
setup(
name='django-slow-log',
version=version,
description="slow request log for django",
long_description=open('README.rst').read(),
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: Log Analysis',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: POSIX',
],
keywords='django profiling slow request',
author='Kyle Terry',
author_email='[email protected]',
url='https://github.com/aquameta/django-slow-log',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
test_suite="tests",
install_requires=[
# 'django',
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
)