-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
56 lines (49 loc) · 1.6 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
48
49
50
51
52
53
54
55
56
from setuptools import setup
import platform
reqs = ["mutagen>=1.2"]
# use avahi if available
try:
import avahi
except ImportError:
import sys
if sys.version_info[0] < 3:
reqs.append("zeroconf<0.20")
else:
reqs.append("zeroconf")
setup(
name="spydaap",
version="0.2",
author="Erik Hetzner",
author_email="[email protected]",
description="A simple DAAP server",
long_description="""
=========
spydaap
=========
Spydaap is a media server supporting the DAAP protocol (aka iTunes
sharing). It is written in Python, uses the mutagen media metadata
library, and either the Avahi or python-zeroconf implementation.
Features:
- Runs on Unix-like systems (Linux, *BSD, Mac OS X).
- Can stream mp3s, ogg, flac, and Quicktime videos.
- Supports "smart" playlists written in Python.
- Written in 100 percent Python and easily modifiable.
- Caches almost everything for fast performance.
- Embeddable.
Note: This pypi package is maintained by the Exaile project, but will be kept in
sync with the upstream spydaap project.
""",
url="https://github.com/egh/spydaap",
install_requires=reqs,
entry_points={
'console_scripts': [
'spydaap=spydaap.cli:main'
]
},
packages=["spydaap", "spydaap.parser"],
classifiers=["Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Topic :: Multimedia :: Sound/Audio",
"Operating System :: POSIX",
"Intended Audience :: End Users/Desktop"])