Skip to content

Commit

Permalink
Added a setup.py to be able to install django-cms with easy_install, …
Browse files Browse the repository at this point in the history
…pip and the like

Signed-off-by: Patrick Lauber <patrick.lauber@divio.ch>
  • Loading branch information
Philipp Bosch authored and Patrick Lauber committed Jul 25, 2009
1 parent f671654 commit 872b31f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions setup.py
@@ -0,0 +1,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/*'
]
},
)

0 comments on commit 872b31f

Please sign in to comment.