blob: 0731ce85bee52eb335ce8c5472912ffbed242b8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env python3
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'],
)
|