-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·47 lines (38 loc) · 1.12 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup
setup(
name = 'moxie',
version = '8.12.1',
description = 'Makes mixtapes!',
url = 'http://github.com/quad/moxie',
author = 'Scott Robinson',
author_email = '[email protected]',
maintainer = 'Moxie Hackers',
maintainer_email = '[email protected]',
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 = [
'Mako', # MIT
'Markdown >= 1.7', # BSD
'selector', # LGPLv2.1
'static', # LGPLv2.1
'WebOb', # MIT
],
entry_points = {
'console_scripts': [
'moxie-test = moxie.deploy:local',
'moxie-static = moxie.deploy:static',
]
},
test_suite = 'tests',
)