This repository has been archived by the owner on Aug 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (38 loc) · 1.37 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
import os
license = ""
if os.path.isfile("LICENSE"):
with open('LICENSE') as f:
license = f.read()
readme = ""
if os.path.isfile("README.md"):
with open("README.md") as f:
readme = f.read()
setup(
zip_safe=False,
name='django-debug-toolbar-openstack-panel',
version='0.0.1',
packages=['openstack_panel', 'openstack_panel.panels'],
package_data={'': ['templates/openstack_panel/*', 'static/debug_toolbar/js/*', ]},
url='https://github.com/andriyko/django-debug-toolbar-openstack-panel',
license=license,
author='Andriy Hrytskiv',
author_email='ahrytskiv@gmail.com',
description='A django-debug-toolbar panel for OpenStack Dashboard',
install_requires=['Django', 'django-debug-toolbar>=1.0.1',
'requests==2.3.0', 'six==1.7.2'],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Debuggers'],
long_description=readme,
)