forked from SmartTeleMax/iktomi-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (47 loc) · 1.52 KB
/
setup.py
File metadata and controls
50 lines (47 loc) · 1.52 KB
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
47
48
49
50
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='iktomi.cms',
version='0.2.5',
packages=['iktomi',
'iktomi.cms',
'iktomi.cms.auth',
'iktomi.cms.edit_log',
'iktomi.cms.editor_notes',
'iktomi.cms.forms',
'iktomi.cms.item_lock',
'iktomi.cms.models',
'iktomi.cms.publishing',
'iktomi.cms.tray'],
package_dir={
'iktomi.cms': 'iktomi/cms'
},
package_data={
'iktomi.cms': ['templates/*.html',
'templates/*/*.html',
'templates/*/*/*.html',
'static/js/*.js',
'static/js/*.json',
'static/js/*/*.js',
'static/js/Manifest',
'static/css/*.css',
'static/css/*/*.css',
'static/css/Manifest',
'static/images/*.*',
'static/images/*/*.*',
],
},
requires=[
'webob (>1.1b1)',
'iktomi (>0.4.2)',
],
author='Denis Otkidach',
author_email='denis.otkidach@gmail.com',
maintainer='Harut Dagesyan',
maintainer_email='yes@harutune.name',
description='CMS components for iktomi.',
#long_description=open('README').read(),
url='http://github.com/SmartTeleMax/iktomi-cms/',
license='MIT',
#keywords='',
)