public
Description: Django object moderation
Homepage: http://pypi.python.org/pypi/django-gatekeeper/
Clone URL: git://github.com/sunlightlabs/django-gatekeeper.git
django-gatekeeper / setup.py
100644 28 lines (25 sloc) 0.893 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
from distutils.core import setup
 
long_description = open('README.rst').read()
 
setup(
    name='django-gatekeeper',
    version="0.3.0",
    package_dir={'gatekeeper': 'gatekeeper'},
    packages=['gatekeeper'],
    package_data={'gatekeeper': ['templates/admin/gatekeeper/*.html']},
    description='Django object moderation',
    author='Jeremy Carbaugh',
    author_email='jcarbaugh@sunlightfoundation.com',
    license='BSD License',
    url='http://github.com/sunlightlabs/django-gatekeeper/',
    long_description=long_description,
    platforms=["any"],
    classifiers=[
        'Development Status :: 4 - Beta',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Natural Language :: English',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Environment :: Web Environment',
    ],
)