-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·44 lines (40 loc) · 1.38 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# django-dumpslow -- Django application to log and summarize slow requests
# <http://chris-lamb.co.uk/projects/django-dumpslow>
#
# Copyright © 2009-2019 Chris Lamb <[email protected]>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
setup_args = dict(
name='django-dumpslow',
version='3.1.0',
license='BSD-2-Clause',
url='https://chris-lamb.co.uk/projects/django-dumpslow',
packages=(
'django_dumpslow',
'django_dumpslow.management',
'django_dumpslow.management.commands',
),
author='Chris Lamb',
author_email='[email protected]',
description="Django application to log and summarize slow requests",
install_requires=(
'Django>=1.11',
'redis>=3.0',
'tabulate',
),
)
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(**setup_args)