MrOxiMoron / cmsplugin-news

A news application which is pluggable into django-cms. Just so you know, I've been kinda busy with other programming tasks which didn't involve django cms. This I don't know if this still work with the latest version or not.

commit 6: 12638d130b29
parent 5: cbf091b5a6df
branch: default
Added setup.py cmsplugin-news is now available from pypi.
Harro van der Klauw / MrOxiMoron
5 months ago

Changed (Δ787 bytes):

raw changeset »

.hgignore (2 lines added, 0 lines removed)

setup.py (23 lines added, 0 lines removed)

Up to file-list .hgignore:

1
1
syntax: glob
2
2
*.pyc
3
cmsplugin_news.egg-info
4
dist

Up to file-list setup.py:

1
from setuptools import setup, find_packages
2
3
setup(
4
    name='cmsplugin-news',
5
    version='0.1a4',
6
    description='This is a news app/plugin for the django-cms 2',
7
    author='Harro van der Klauw',
8
    author_email='hvdklauw@gmail.com',
9
    url='http://bitbucket.org/MrOxiMoron/cmsplugin-news/',
10
    packages=find_packages(),
11
    classifiers=[
12
        'Development Status :: 3 - Alpha',
13
        'Environment :: Web Environment',
14
        'Intended Audience :: Developers',
15
        'License :: OSI Approved :: BSD License',
16
        'Operating System :: OS Independent',
17
        'Programming Language :: Python',
18
        'Framework :: Django',
19
    ],
20
    include_package_data=True,
21
    zip_safe=False,
22
    install_requires=['setuptools', 'setuptools_bzr'],
23
)