mirror of
https://github.com/xssfox/freedvtnc2
synced 2026-08-14 19:31:47 -04:00
9 lines
179 B
Python
9 lines
179 B
Python
from setuptools import setup
|
|
|
|
import freedvtnc2.freedv_build as freedv_build
|
|
|
|
|
|
def build(a):
|
|
setup(
|
|
ext_modules=[freedv_build.ffibuilder.distutils_extension()],
|
|
)
|