quad / moxie

Makes mixtapes!

moxie / setup.py
100755 60 lines (49 sloc) 1.498 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
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
57
58
59
60
#!/usr/bin/env python
 
try:
    import pygst
    pygst.require('0.10')
except ImportError:
    logging.info('GStreamer bindings should be installed: http://pygstdocs.berlios.de/')
 
from setuptools import setup, find_packages
 
setup(
    name = 'moxie',
    version = '8.12.1',
    description = 'Makes mixtapes!',
    url = 'http://github.com/quad/moxie',
 
    author = 'Scott Robinson',
    author_email = 'scott@quadhome.com',
 
    maintainer = 'Moxie Hackers',
    maintainer_email = 'moxie-hackers@googlegroups.com',
 
    license = 'GPLv3',
    classifiers = [
        'Development Status :: 4 - Beta',
        'Environment :: Console',
        'Environment :: Web Environment',
        'License :: OSI Approved :: GNU General Public License (GPL)',
        'Topic :: Internet :: WWW/HTTP',
        'Topic :: Multimedia :: Sound/Audio :: Players :: MP3',
        'Topic :: Utilities',
    ],
 
    packages = ['moxie'],
    include_package_data = True,
 
    install_requires = [
        'flup', # BSD
        'Mako', # MIT
        'Markdown >= 1.7', # BSD
        'mutagen >= 1.15', # GPLv2
        'selector', # LGPLv2.1
        'static', # LGPLv2.1
        'WebOb', # MIT
    ],
    dependency_links = [
        # mutagen
        "http://code.google.com/p/quodlibet/downloads/list",
    ],
 
    entry_points = {
        'console_scripts': [
            'moxie-test = moxie.deploy:local',
            'moxie-static = moxie.deploy:static',
        ]
    },
 
    test_suite = 'nose.collector',
)