Skip to content
This repository was archived by the owner on Jul 16, 2019. It is now read-only.

Commit 760d321

Browse files
committed
ARP: wrapped spead.py into a package w/ installer.
1 parent e6089d1 commit 760d321

File tree

8 files changed

+720
-0
lines changed

8 files changed

+720
-0
lines changed

LICENSE

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
The Streaming Protocol for Exchanging Astronomical Data (SPEAD) is:
2+
3+
Copyright (C) 2009 SKA South Africa and the Center for Astronomy Signal
4+
Processing and Electronics Research
5+
6+
This program is free software; you can redistribute it and/or
7+
modify it under the terms of the GNU General Public License
8+
as published by the Free Software Foundation; either version 2
9+
of the License, or (at your option) any later version.
10+
11+
This program is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program; if not, write to the Free Software
18+
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19+

LICENSE-GPL

+674
Large diffs are not rendered by default.

MANIFEST.in

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
include scripts/*
2+
include src/*
3+
include tests/*.py
4+
include setup.py
5+
include LICENSE
6+
include LICENSE-GPL
7+
include doc/*.pdf
8+
include MANIFEST.in

setup.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
"""SPEAD: The Streaming Protocol for Exchanging Astronomical Data"""
2+
from distutils.core import setup
3+
import os, glob
4+
5+
__version__ = '0.0.1'
6+
7+
setup(name = 'spead',
8+
version = __version__,
9+
description = __doc__,
10+
long_description = __doc__,
11+
license = 'GPL',
12+
author = 'Simon Ratcliffe, Aaron Parsons',
13+
14+
url = 'http://pypi.python.org/pypi/spead',
15+
package_dir = {'spead':'src'},
16+
packages = ['spead'],
17+
scripts = glob.glob('scripts/*'),
18+
)

spead.pdf

-212 KB
Binary file not shown.

src/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from spead import *

spead.py src/spead.py

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)