-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 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
#!/usr/bin/env python
#
# Usage: python setup.py install
#
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
name = "howl"
version = "0.6"
author = "William Wiens"
license="MIT"
description="Howl music server"
long_description="""Howl is a python-based webserver that allows applications to access the script interfaces of desktop media players. Plugins for players like iTunes and Windows Media Player provide a web-service to each players script interface, and plugins like Howl provide user interfaces to the exposed web-services"""
packages=find_packages(exclude=['tests'])
dependencies = ["CherryPy",
"simplejson",
"appscript",
"setuptools-git"]
def main():
dist = setup(
name = name,
version = version,
description = description,
long_description = long_description,
author = author,
license = license,
packages = packages,
include_package_data = True,
install_requires = dependencies,
entry_points = {
'console_scripts': [
'howl = howl:main'
]
}
)
if __name__ == "__main__":
main()