blob: f932c80ada77987697895488a44bdeda2ece3fe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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'],
)
|