diff --git a/.gitignore b/.gitignore index d2999d54c2388d74a53d3ccb46f2e3504d7df159..c63e8f2603ab5299446b8cb8d7ee7e7bbdc11ef0 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ output.xml flake8.log nosetests.xml pylint.log +.idea/ diff --git a/Makefile b/Makefile index 3eaccce7791fed98cc8c66645e8f97d231c47511..c9d56203e733d1f52bfbeecbb7da9d8c7ea93956 100644 --- a/Makefile +++ b/Makefile @@ -44,4 +44,4 @@ lint: pylint -f parseable -i y -r y aprs/*.py tests/*.py *.py | \ tee pylint.log -test: install_requirements lint clonedigger flake8 nosetests +test: install_requirements lint clonedigger flake8 nosetests \ No newline at end of file diff --git a/README.rst b/README.rst index 08f637ac16342530629b10b60cc58f8dc18a7525..de6f501f6d9e68f092c89c076fbbe2454650345d 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,5 @@ Python Module for APRS-IS. -2013-01-17 WIP - .. image:: https://travis-ci.org/ampledata/aprs.png?branch=develop :target: https://travis-ci.org/ampledata/aprs @@ -11,7 +9,7 @@ Github: https://github.com/ampledata/aprs Author ====== -Greg Albrecht <mailto:gba@gregalbrecht.com> +Greg Albrecht W2GMD <gba@gregalbrecht.com> Copyright ========= diff --git a/aprs/__init__.py b/aprs/__init__.py index 8fcaab90233acf16df6b23bfd0032078fedf54f3..aaa6172944ff39dfbf93d3e9a356c7cdb3ff0278 100644 --- a/aprs/__init__.py +++ b/aprs/__init__.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = 'Greg Albrecht <gba@gregalbrecht.com>' +__author__ = 'Greg Albrecht W2GMD <gba@gregalbrecht.com>' __copyright__ = 'Copyright 2013 Greg Albrecht' __license__ = 'Creative Commons Attribution 3.0 Unported License' diff --git a/aprs/aprs.py b/aprs/aprs.py index 8ffefc6436e9101509285669e76ca2e4b889585c..08630e8bc20f88e6f82424cf92f863fef42e1680 100755 --- a/aprs/aprs.py +++ b/aprs/aprs.py @@ -1,5 +1,9 @@ #!/usr/bin/env python +__author__ = 'Greg Albrecht W2GMD <gba@gregalbrecht.com>' +__copyright__ = 'Copyright 2013 Greg Albrecht' +__license__ = 'Creative Commons Attribution 3.0 Unported License' + import logging import logging.handlers diff --git a/aprs/util.py b/aprs/util.py index ebf0c30e41f2d7e9ae41a0fc7c3ef0a651d1fc60..b75ba6e7b8dc748cbfb8f34b7e14fbf63a576d08 100755 --- a/aprs/util.py +++ b/aprs/util.py @@ -1,5 +1,9 @@ #!/usr/bin/env python +__author__ = 'Greg Albrecht W2GMD <gba@gregalbrecht.com>' +__copyright__ = 'Copyright 2013 Greg Albrecht' +__license__ = 'Creative Commons Attribution 3.0 Unported License' + import decimaldegrees diff --git a/requirements.txt b/requirements.txt index 6bc51418b529a3e6ab40133a997d8926ac64ebd9..6794368938f6ea0e5822ae3f178271460c93d469 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,5 @@ pylint clonedigger +httpretty +nose +requests diff --git a/setup.py b/setup.py index 1bb19bd515b3facf471a15d9ed7d25fbe2e742f9..133b28a3c7ad79fb9b38bd38f45f0841c90b805e 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = 'Greg Albrecht <gba@gregalbrecht.com>' +__author__ = 'Greg Albrecht W2GMD <gba@gregalbrecht.com>' __copyright__ = 'Copyright 2013 Greg Albrecht' __license__ = 'Creative Commons Attribution 3.0 Unported License' @@ -11,7 +11,7 @@ import setuptools setuptools.setup( version='1.0.0', name='aprs', - description='Python Bindings for aprs-is API.', + description='Python Bindings for APRS-IS API.', author='Greg Albrecht', author_email='gba@gregalbrecht.com', license='Creative Commons Attribution 3.0 Unported License', diff --git a/tests/context.py b/tests/context.py index 922205b5f6c18632f645ca3198a2cf5802c14f04..da83fba249190ce29fb2b0cf9b78eed93187362c 100644 --- a/tests/context.py +++ b/tests/context.py @@ -4,7 +4,7 @@ Based on http://kennethreitz.com/repository-structure-and-python.html """ -__author__ = 'Greg Albrecht <gba@gregalbrecht.com>' +__author__ = 'Greg Albrecht W2GMD <gba@gregalbrecht.com>' __copyright__ = 'Copyright 2013 Greg Albrecht' __license__ = 'Creative Commons Attribution 3.0 Unported License' diff --git a/tests/test_aprs.py b/tests/test_aprs.py index a569173d70931c868bace468f743d8ff19d084d9..1337c61da25dbfba66612ae84909bc4acf5c6233 100644 --- a/tests/test_aprs.py +++ b/tests/test_aprs.py @@ -1,5 +1,9 @@ #!/usr/bin/env python +__author__ = 'Greg Albrecht W2GMD <gba@gregalbrecht.com>' +__copyright__ = 'Copyright 2013 Greg Albrecht' +__license__ = 'Creative Commons Attribution 3.0 Unported License' + import random import unittest @@ -93,6 +97,7 @@ class APRSTest(unittest.TestCase): self.assertFalse(result) + @unittest.skip('Test only works with real server.') def test_more(self): aprs_conn = aprs.APRS( user=self.real_callsign, diff --git a/tests/test_util.py b/tests/test_util.py index 7a59f7614a259d9c143353b0a593de1aa5b5788a..e01cf79e84a3d0b966317cabfd9fab3c778198f9 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -1,5 +1,9 @@ #!/usr/bin/env python +__author__ = 'Greg Albrecht W2GMD <gba@gregalbrecht.com>' +__copyright__ = 'Copyright 2013 Greg Albrecht' +__license__ = 'Creative Commons Attribution 3.0 Unported License' + import unittest import logging