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