public
Description: An Advanced Django Cms
Homepage: http://www.django-cms.org
Clone URL: git://github.com/digi604/django-cms-2.0.git
Click here to lend your support to: django-cms-2.0 and make a donation at www.pledgie.com !
digi604 (author)
Fri Nov 06 08:32:27 -0800 2009
commit  8bdeca47c93709cb20703f11a75097d75998cddc
tree    712e0c51e439e554761542526647f8dac3b06341
parent  09ecbe7d00298d7a3d182cbd7bb69fc96811ac4f
django-cms-2.0 / setup.py
100644 57 lines (53 sloc) 1.814 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
51
52
53
54
55
56
57
from setuptools import setup, find_packages
import os
import cms
media_files = []
 
for dirpath, dirnames, filenames in os.walk('cms/media'):
    media_files.append([dirpath, [os.path.join(dirpath, f) for f in filenames]])
 
setup(
    author="Patrick Lauber",
    author_email="digi@treepy.com",
    name='django-cms',
    version=cms.__version__,
    description='An Advanced Django CMS',
    long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
    url='http://www.django-cms.org/',
    license='BSD License',
    platforms=['OS Independent'],
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Environment :: Web Environment',
        'Framework :: Django',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
        'Topic :: Software Development',
        'Topic :: Software Development :: Libraries :: Application Frameworks',
    ],
    requires=[
        'django (>1.1.0)',
    ],
    
    packages=find_packages(),
    package_dir={
        'cms': 'cms',
        'mptt': 'mptt',
        'publisher': 'publisher',
    },
    data_files = media_files,
    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',
            'plugins/*/templates/cms/plugins/*/*.js',
            'locale/*/LC_MESSAGES/*'
        ]
    },
    zip_safe = False
)