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
|
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='fookebox',
version='0.6.1',
description='A jukebox-style web-frontend to mpd',
long_description="""fookebox is a jukebox-style web-frontend to mpd.
It can be used as a keyboard-less jukebox, as a powerful
mpd control frontend or as anything in between.""",
author='Stefan Ott',
author_email='stefan@ott.net',
url='http://fookebox.googlecode.com/',
install_requires=[
"Pylons>=0.10",
'python-mpd',
],
keywords='mpd jukebox web music party',
setup_requires=[],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
test_suite='nose.collector',
package_data={'fookebox': ['i18n/*/LC_MESSAGES/*.mo']},
license='GPLv3',
message_extractors={'fookebox': [
('**.py', 'python', None),
('templates/**.tpl', 'mako', {'input_encoding': 'utf-8'}),
('public/**', 'ignore', None)]},
zip_safe=False,
entry_points="""
[paste.app_factory]
main = fookebox.config.middleware:make_app
[paste.app_install]
main = pylons.util:PylonsInstaller
""",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Pylons',
'Intended Audience :: End Users/Desktop',
'License :: DFSG approved',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Natural Language :: German',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Multimedia',
'Topic :: Multimedia :: Sound/Audio',
],
)
|