-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
39 lines (38 loc) · 1.46 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
from setuptools import setup, find_packages
from io import open
setup(
name='django-debug-toolbar-template-profiler',
version='2.1.0',
description='Displays template rendering time on the timeline',
long_description=open('README.rst', encoding='utf-8').read(),
long_description_content_type="text/x-rst",
author='Sergej Alikov',
author_email='[email protected]',
maintainer='Adam Johnson',
maintainer_email='[email protected]',
url='https://github.com/node13h/django-debug-toolbar-template-profiler',
project_urls={
"Changelog": "https://github.com/node13h/django-debug-toolbar-template-profiler/blob/master/HISTORY.rst"
},
license='Simplified BSD License',
packages=find_packages(),
install_requires=[
'django-debug-toolbar>=2.0',
'wrapt',
],
include_package_data=True,
zip_safe=False, # because we're including static files
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)