public
Description: brainstorm idea voting app used to power feedback.sunlightfoundation.com
Homepage:
Clone URL: git://github.com/sunlightlabs/django-brainstorm.git
django-brainstorm / setup.py
100644 28 lines (25 sloc) 0.879 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-brainstorm',
    version="0.2.0",
    package_dir={'brainstorm': 'brainstorm'},
    packages=['brainstorm'],
    package_data={'brainstorm': ['templates/brainstorm/*.html']},
    description='Django brainstorming site',
    author='James Turk',
    author_email='jturk@sunlightfoundation.com',
    license='BSD License',
    url='http://github.com/sunlightlabs/django-brainstorm/',
    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',
    ],
)