forked from F5OEO/rpitx
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 821 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 821 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
"""Setup for rpitx."""
from setuptools import setup, Extension
setup(
name='rpitx',
version='0.2',
description='Raspyberry Pi radio transmitter',
author='Brandon Skari',
author_email='brandon@skari.org',
url='https://github.com/F5OEO/rpitx',
ext_modules=[
Extension(
'_rpitx',
[
'src/RpiDma.c',
'src/RpiGpio.c',
'src/RpiTx.c',
'src/mailbox.c',
'src/python/_rpitxmodule.c',
'src/raspberry_pi_revision.c',
],
extra_link_args=['-lrt', '-lsndfile'],
),
],
packages=['rpitx'],
package_dir={'': 'src/python'},
install_requires=[
'ffmpegwrapper==0.1-dev',
'pypi-libavwrapper',
],
)