commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r7796 - in grc/branches/grc_reloaded: . scripts src/gr


From: jblum
Subject: [Commit-gnuradio] r7796 - in grc/branches/grc_reloaded: . scripts src/grc_gnuradio src/grc_gnuradio/blks2 src/grc_gnuradio/usrp src/grc_gnuradio/wxgui
Date: Sat, 23 Feb 2008 11:47:17 -0700 (MST)

Author: jblum
Date: 2008-02-23 11:47:05 -0700 (Sat, 23 Feb 2008)
New Revision: 7796

Added:
   grc/branches/grc_reloaded/setup.py
   grc/branches/grc_reloaded/src/grc_gnuradio/__init__.py
   grc/branches/grc_reloaded/src/grc_gnuradio/blks2/__init__.py
   grc/branches/grc_reloaded/src/grc_gnuradio/usrp/__init__.py
   grc/branches/grc_reloaded/src/grc_gnuradio/wxgui/__init__.py
Modified:
   grc/branches/grc_reloaded/scripts/grc
   grc/branches/grc_reloaded/src/grc_gnuradio/wxgui/Controls.py
Log:
setup script

Modified: grc/branches/grc_reloaded/scripts/grc
===================================================================
--- grc/branches/grc_reloaded/scripts/grc       2008-02-23 18:20:55 UTC (rev 
7795)
+++ grc/branches/grc_reloaded/scripts/grc       2008-02-23 18:47:05 UTC (rev 
7796)
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#!/usr/bin/env python
 """
 Copyright 2008 Free Software Foundation, Inc.
 This file is part of GNU Radio

Added: grc/branches/grc_reloaded/setup.py
===================================================================
--- grc/branches/grc_reloaded/setup.py                          (rev 0)
+++ grc/branches/grc_reloaded/setup.py  2008-02-23 18:47:05 UTC (rev 7796)
@@ -0,0 +1,64 @@
+#! /usr/bin/env python
+"""
+Copyright 2008 Free Software Foundation, Inc.
+This file is part of GNU Radio
+
+GNU Radio Companion 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 2
+of the License, or (at your option) any later version.
+
+GNU Radio Companion 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 this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
+"""
address@hidden setup 
+#Distribution script for grc.
address@hidden Josh Blum
+
+from distutils.core import setup
+
+VERSION = __import__('src/grc/Constants').VERSION
+
+PACKAGES=[
+'grc',
+'grc.elements',
+'grc.gui',
+'grc.gui.elements',
+'grc.platforms',
+'grc.platforms.gnuradio_python',
+
+'grc_gnuradio',
+'grc_gnuradio.blks2',
+'grc_gnuradio.usrp',
+'grc_gnuradio.wxgui',
+
+]
+
+DATA=[
+       'data/*.*',
+       'platforms/gnuradio_python/data/*.*',   
+       'platforms/gnuradio_python/blocks/*.*',
+       'platforms/gnuradio_python/blocks/sources/*.xml',
+       'platforms/gnuradio_python/blocks/sinks/*.xml',
+       'platforms/gnuradio_python/blocks/operators/*.xml',
+       'platforms/gnuradio_python/blocks/variables/*.xml',
+]
+
+setup(
+       name='GRC',
+       version=VERSION,
+       description='GNURadio Companion',
+       author='Josh Blum',
+       author_email='address@hidden',
+       url='http://gnuradio.org/trac/wiki/GNURadioCompanion',
+       packages=PACKAGES,
+       package_dir={'': 'src'},
+       package_data={'grc': DATA},
+       scripts=['scripts/grc'],
+)


Property changes on: grc/branches/grc_reloaded/setup.py
___________________________________________________________________
Name: svn:executable
   + *

Added: grc/branches/grc_reloaded/src/grc_gnuradio/__init__.py
===================================================================
--- grc/branches/grc_reloaded/src/grc_gnuradio/__init__.py                      
        (rev 0)
+++ grc/branches/grc_reloaded/src/grc_gnuradio/__init__.py      2008-02-23 
18:47:05 UTC (rev 7796)
@@ -0,0 +1,21 @@
+"""
+Copyright 2008 Free Software Foundation, Inc.
+This file is part of GNU Radio
+
+GNU Radio Companion 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 2
+of the License, or (at your option) any later version.
+
+GNU Radio Companion 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 this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
+"""
address@hidden grc_gnuradio 
+#Supplemental package for gnuradio.
address@hidden Josh Blum

Added: grc/branches/grc_reloaded/src/grc_gnuradio/blks2/__init__.py
===================================================================

Added: grc/branches/grc_reloaded/src/grc_gnuradio/usrp/__init__.py
===================================================================

Modified: grc/branches/grc_reloaded/src/grc_gnuradio/wxgui/Controls.py
===================================================================
--- grc/branches/grc_reloaded/src/grc_gnuradio/wxgui/Controls.py        
2008-02-23 18:20:55 UTC (rev 7795)
+++ grc/branches/grc_reloaded/src/grc_gnuradio/wxgui/Controls.py        
2008-02-23 18:47:05 UTC (rev 7796)
@@ -16,7 +16,7 @@
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
address@hidden grc.wxgui.Controls 
address@hidden grc_gnuradio.wxgui.Controls 
 #WX control elements like sliders, drop downs, buttons
 address@hidden Josh Blum
 

Added: grc/branches/grc_reloaded/src/grc_gnuradio/wxgui/__init__.py
===================================================================





reply via email to

[Prev in Thread] Current Thread [Next in Thread]