forked from hifiberry/hifiberry-dsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.24 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
from setuptools import setup, find_packages
import hifiberrydsp
setup(name='hifiberrydsp',
version=hifiberrydsp.__version__,
description='HiFiBerry DSP toolkit',
long_description='A collection of tools to configure HiFiBerry DSP boards and porogram them from SigmaStudio',
url='http://github.com/hifiberry/hifiberry-dsp',
author='Daniel Matuschek',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: System :: Hardware :: Hardware Drivers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
packages=find_packages(),
install_requires=['xmltodict', 'lxml',
'spidev', 'pyalsaaudio', 'requests', 'zeroconf',
'RPi.GPIO'],
scripts=['bin/dsptoolkit',
'bin/sigmatcpserver',
'bin/mergeparameters',
'bin/optimizer-client',
'bin/spdifclockgen'],
keywords='audio raspberrypi dsp',
zip_safe=False)