forked from winjer/squeal
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 951 Bytes
/
setup.py
File metadata and controls
34 lines (31 loc) · 951 Bytes
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
from setuptools import setup, find_packages
version = '0.0.0'
setup(
name = 'squeal',
version = version,
description = "Jukebox for Squeezebox players, with spotify support.",
url = "http://squealserver.com/",
long_description = open("README.rst").read() + "\n" + \
open("CHANGES.txt").read(),
keywords = "squeezebox squeal spotify",
author = "Doug Winter",
author_email = "doug.winter@isotoma.com",
license="Apache Software License",
package_dir = {'': 'src'},
packages = find_packages(exclude=['ez_setup']),
package_data = {
'': ['README.rst', 'CHANGES.txt'],
},
include_package_data = True,
zip_safe = False,
install_requires = [
'setuptools',
'isotoma.recipe.gocaptain',
'simplejson',
'netaddr',
'pysqlite',
'epsilon',
'axiom'
#PIL and tagpy also, but they don't work in here
],
)