forked from django-cms/django-cms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (25 loc) · 760 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='django-cms',
version='2.0.0.alpha',
description='An Advanced Django CMS',
url='http://github.com/digi604/django-cms-2.0/',
packages=find_packages(),
package_dir={
'cms': 'cms',
'mptt': 'mptt',
'publisher': 'publisher',
},
package_data = {
'cms': [
'templates/admin/cms/mail/*.html',
'templates/admin/cms/mail/*.txt',
'templates/admin/cms/page/*.html',
'templates/admin/cms/page/*/*.html',
'templates/cms/*.html',
'plugins/*/templates/cms/plugins/*.html',
'plugins/*/templates/cms/plugins/*/*.html',
'locale/*/LC_MESSAGES/*'
]
},
)