-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 820 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 820 Bytes
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
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='iktomi.toolbar',
version='0.1',
packages=['iktomi', 'iktomi.toolbar', 'iktomi.toolbar.panels'],
package_dir={
'iktomi.toolbar': 'iktomi/toolbar'
},
package_data={
'iktomi.toolbar': ['templates/*.html',
'templates/*/*.html',
'static/js/*.js'],
},
requires=[
'webob (>1.1b1)',
'iktomi (>0.3)',
],
author='Roman Gladkov',
author_email='d1ffuz0r@gmail.com',
maintainer='Harutyun Dagesyan',
maintainer_email='me@harutune.name',
description='Debug toolbar for iktomi.',
#long_description=open('README').read(),
url='http://github.com/SmartTeleMax/iktomi_toolbar/',
license='MIT',
#keywords='',
)