uhd/host/utils/setup.py.in
Martin Braun 1bba62a75a Remove remaining Python 2 references
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
2020-05-07 15:10:41 -05:00

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'],
)