-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (30 loc) · 1.06 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
from setuptools import setup, find_packages
# read the contents of README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
# setup the project
setup(
name="django-scooby-profiler",
version="2.0.7",
url="https://github.com/shhaumb/django-scooby-profiler",
author="Shubham Jain",
author_email="sj.iitr@gmail.com",
description=(
"A debugging tool for Django applications which works for all HTTP "
"requests including AJAX. Using this, you can profile Django views. "
"It shows you all SQL, Memcache queries with proper stacktrace "
"happening in app while serving a request, with the help of "
"'Scooby profiler' chrome extension."
),
long_description=long_description,
long_description_content_type='text/markdown',
keywords="django debugging profiler profiling sql tool",
license="MIT",
packages=find_packages(),
install_requires=[
'redis',
'pyjwt',
]
)