mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
This changes two things in all applicable files: - Remove imports from __future__ - Change default shebangs from /usr/bin/env python to /usr/bin/env python3
14 lines
371 B
Python
14 lines
371 B
Python
#!/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'],
|
|
)
|