]> git.0d.be Git - panikweb.git/blob - setup.py
limit embed view to podcastable sounds
[panikweb.git] / setup.py
1 #!/usr/bin/env python
2
3 from setuptools import setup
4
5 setup(name='panikweb',
6       version='0.1',
7       description='Radio Panik Website',
8       author='Frederic Peters',
9       author_email='fpeters@0d.be',
10       url='http://www.radiopanik.org',
11       install_requires=[
12           'django',
13           'sorl-thumbnail',
14            ],
15       license='GPL',
16       classifiers=['Development Status :: 3 - Alpha',
17                    'Environment :: Web Environment',
18                    'Framework :: Django',
19                    'Intended Audience :: Developers',
20                    'License :: OSI Approved :: GNU General Public License (GPL) License',
21                    'Operating System :: OS Independent',
22                    'Programming Language :: Python',
23                    'Topic :: Internet :: WWW/HTTP',
24                    'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
25                    ],
26       )