diff options
author | Ben Reynwar <ben@reynwar.net> | 2013-04-06 22:36:56 -0700 |
---|---|---|
committer | Ben Reynwar <ben@reynwar.net> | 2013-04-06 22:36:56 -0700 |
commit | 0e831b47ef67b885f3c6d60ed4816458d76446dd (patch) | |
tree | 0854a57039dbb8602a7f38854c846b207f9af1ae /gr-atsc | |
parent | 0fa5d821e0bb6d98388a0bf766837cbd6c73451f (diff) |
atsc: Updating atsc python folder to new style. Was missing __init__.py
Diffstat (limited to 'gr-atsc')
-rw-r--r-- | gr-atsc/python/CMakeLists.txt | 7 | ||||
-rw-r--r-- | gr-atsc/python/__init__.py | 28 |
2 files changed, 35 insertions, 0 deletions
diff --git a/gr-atsc/python/CMakeLists.txt b/gr-atsc/python/CMakeLists.txt index ea3524ae18..ddc4aba5b5 100644 --- a/gr-atsc/python/CMakeLists.txt +++ b/gr-atsc/python/CMakeLists.txt @@ -23,6 +23,13 @@ include(GrPython) GR_PYTHON_INSTALL( + FILES + __init__.py + DESTINATION ${GR_PYTHON_DIR}/gnuradio/atsc + COMPONENT "atsc_python" +) + +GR_PYTHON_INSTALL( PROGRAMS btl-fsd.py fpll.py diff --git a/gr-atsc/python/__init__.py b/gr-atsc/python/__init__.py new file mode 100644 index 0000000000..e59fec399d --- /dev/null +++ b/gr-atsc/python/__init__.py @@ -0,0 +1,28 @@ +# +# Copyright 2013 Free Software Foundation, Inc. +# +# This file is part of GNU Radio +# +# GNU Radio is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# GNU Radio is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Radio; see the file COPYING. If not, write to +# the Free Software Foundation, Inc., 51 Franklin Street, +# Boston, MA 02110-1301, USA. +# + +# The presence of this file turns this directory into a Python package + +''' +Blocks and utilities for ATSC (Advanced Television Systems Committee) module. +''' + +from atsc_swig import * |