aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils/setup.py.in
diff options
context:
space:
mode:
Diffstat (limited to 'host/utils/setup.py.in')
-rw-r--r--host/utils/setup.py.in14
1 files changed, 14 insertions, 0 deletions
diff --git a/host/utils/setup.py.in b/host/utils/setup.py.in
new file mode 100644
index 000000000..f932c80ad
--- /dev/null
+++ b/host/utils/setup.py.in
@@ -0,0 +1,14 @@
+#!/usr/bin/env python
+
+from distutils.core import setup
+
+print(__file__)
+setup(name='rfnoc',
+ version='1.0',
+ description='desc',
+ author='ettus',
+ package_data={'rfnoc': ['templates/*.v.mako', 'templates/modules/*.v.mako']},
+ scripts=['bin/rfnoc_image_builder'],
+ packages=['rfnoc'],
+ install_requires=['ruamel.yaml', 'Mako'],
+ )