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