diff --git a/.gitignore b/.gitignore index e4eea93206b89aa36a6546b1fd51e215dd1354cf..ffa0c2137f39659b9e8b218fdc4c8a54dd842f9b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,31 @@ -*.py[co] -*.egg-info/ +*.deb *.egg -cover/ +*.egg-info/ +*.egg/ +*.ignore +*.py[co] +*.py[oc] +*.spl +*.vagrant +.DS_Store .coverage -output.xml +.eggs/ +.eggs/* +.idea +.idea/ +.pt +.vagrant/ +RELEASE-VERSION.txt +build/ +cover/ +dist/ +dump.rdb flake8.log +local/ +local_* +metadata/ nosetests.xml +output.xml pylint.log -.idea/ -dist/ -.eggs/ +redis-server.log +redis-server/ diff --git a/LICENSE b/LICENSE index 4c8225b9d2ee683106e884502c077311771ba7c5..8e95c592d536066046b4214c563034b33b074a87 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2015 Orion Labs, Inc. +Copyright 2016 Orion Labs, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Makefile b/Makefile index 38ec6b297feb78eee46c263466fdd27ee8224828..ec9f0608fe730f855ecdcc4185d18b7ea3710c08 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ # Makefile for APRS Python Module. # # Source:: https://github.com/ampledata/aprs -# Author:: Greg Albrecht W2GMD <gba@orionlabs.co> -# Copyright:: Copyright 2015 Orion Labs, Inc. +# Author:: Greg Albrecht W2GMD <gba@orionlabs.io> +# Copyright:: Copyright 2016 Orion Labs, Inc. # License:: Apache License, Version 2.0 # diff --git a/README.rst b/README.rst index 62c49f28845872eb089fca1c0267713b55aacca8..46a3e8bb506d8876dd2dc2c910289812a8120a79 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,8 @@ Python Module for APRS-IS ************************* -Includes Python module with bindings for APRS as well as ``aprs_tracker`` command-line APRS location tracking utility. +Includes Python module with bindings for APRS as well as ``aprs_tracker`` +command-line APRS location tracking utility. Examples @@ -62,7 +63,8 @@ Example 2 Output Example 3: Library Usage - Send ---------------------------------- -The following example connects to APRS-IS as W2GMD (me!) and sends an APRS frame. +The following example connects to APRS-IS as W2GMD (me!) and sends an APRS +frame. Example 3 Code ^^^^^^^^^^^^^^ @@ -81,11 +83,11 @@ Github: https://github.com/ampledata/aprs Author ====== -Greg Albrecht W2GMD <gba@orionlabs.co> +Greg Albrecht W2GMD <gba@orionlabs.io> Copyright ========= -Copyright 2015 Orion Labs, Inc. +Copyright 2016 Orion Labs, Inc. License ======= diff --git a/aprs/__init__.py b/aprs/__init__.py index c54b66932af1a928ec74b5efa416849aa493889e..88627271edc571eeeead7c34422b87f7e517bf9b 100644 --- a/aprs/__init__.py +++ b/aprs/__init__.py @@ -8,8 +8,8 @@ APRS Python Module. ~~~~ -:author: Greg Albrecht W2GMD <gba@orionlabs.co> -:copyright: Copyright 2015 Orion Labs, Inc. +:author: Greg Albrecht W2GMD <gba@orionlabs.io> +:copyright: Copyright 2016 Orion Labs, Inc. :license: Apache License, Version 2.0 :source: <https://github.com/ampledata/aprs> diff --git a/aprs/classes.py b/aprs/classes.py index fc7bb7804d8ab78af80e4825bddca47a837ccc3d..3765e798a52fcd1e8592ef48647c50a01b8368a3 100755 --- a/aprs/classes.py +++ b/aprs/classes.py @@ -3,9 +3,9 @@ """APRS Class Definitions""" -__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.co>' +__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.io>' __license__ = 'Apache License, Version 2.0' -__copyright__ = 'Copyright 2015 Orion Labs, Inc.' +__copyright__ = 'Copyright 2016 Orion Labs, Inc.' import logging diff --git a/aprs/cmd.py b/aprs/cmd.py index b868d0393ae5dc8afdbc05f9bb0413d2112c9940..841ba3e80e3b6a56c4a61423ea5ed3288629bce3 100644 --- a/aprs/cmd.py +++ b/aprs/cmd.py @@ -3,8 +3,8 @@ """APRS commands.""" -__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.co>' -__copyright__ = 'Copyright 2015 Orion Labs, Inc.' +__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.io>' +__copyright__ = 'Copyright 2016 Orion Labs, Inc.' __license__ = 'All rights reserved. Do not redistribute.' diff --git a/aprs/constants.py b/aprs/constants.py index 79dd8dc30c66f618932d62b6a439317e14a4abbe..c243a7a97fe91bc77aef32f169aba9d0f4755ce8 100644 --- a/aprs/constants.py +++ b/aprs/constants.py @@ -5,9 +5,9 @@ Constants for APRS Module. """ -__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.co>' +__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.io>' __license__ = 'Apache License, Version 2.0' -__copyright__ = 'Copyright 2015 Orion Labs, Inc.' +__copyright__ = 'Copyright 2016 Orion Labs, Inc.' import logging diff --git a/aprs/util.py b/aprs/util.py index 2beeac59fcf26eb354c2095716bee3c2e039823e..da9284b3b3d72dc8f713dc98c084588e9e8cde6d 100755 --- a/aprs/util.py +++ b/aprs/util.py @@ -3,9 +3,9 @@ """Utilities for the APRS Python Module.""" -__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.co>' +__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.io>' __license__ = 'Apache License, Version 2.0' -__copyright__ = 'Copyright 2015 Orion Labs, Inc.' +__copyright__ = 'Copyright 2016 Orion Labs, Inc.' import logging diff --git a/requirements.txt b/requirements.txt index 184270861d51c5d986852ca79eadc2979eca553f..198481aa7373a2a0d771c8498a60ca500dc55a1d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,10 @@ # Python Distribution Package Requirements for APRS. # # Source:: https://github.com/ampledata/aprs -# Author:: Greg Albrecht W2GMD <gba@orionlabs.co> -# Copyright:: Copyright 2015 Orion Labs, Inc. +# Author:: Greg Albrecht W2GMD <gba@orionlabs.io> +# Copyright:: Copyright 2016 Orion Labs, Inc. # License:: Apache License, Version 2.0 -flake8==2.1.0 -pylint==1.2.1 +flake8 +pylint diff --git a/setup.cfg b/setup.cfg index 771109304582af55b26225c5eb4a1257ac738d91..95f68cb90a0b1eae6f5ba20f64e36f82c50b13a3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,8 +1,8 @@ # Nosetests configuration for APRS. # # Source:: https://github.com/ampledata/aprs -# Author:: Greg Albrecht W2GMD <gba@orionlabs.co> -# Copyright:: Copyright 2015 Orion Labs, Inc. +# Author:: Greg Albrecht W2GMD <gba@orionlabs.io> +# Copyright:: Copyright 2016 Orion Labs, Inc. # License:: Apache License, Version 2.0 # diff --git a/setup.py b/setup.py index 78c2ac70127364c70518945270168a57fcb55461..7e7d5c8ba1c73b682cc69faeee5feeec1a033d91 100644 --- a/setup.py +++ b/setup.py @@ -10,19 +10,15 @@ Source:: https://github.com/ampledata/aprs __title__ = 'aprs' __version__ = '4.0.0' -__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.co>' +__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.io>' __license__ = 'Apache License, Version 2.0' -__copyright__ = 'Copyright 2015 Orion Labs, Inc.' +__copyright__ = 'Copyright 2016 Orion Labs, Inc.' import os +import setuptools import sys -try: - from setuptools import setup -except ImportError: - from distutils.core import setup # pylint: disable=F0401,E0611 - def publish(): """Function for publishing package to pypi.""" @@ -34,12 +30,12 @@ def publish(): publish() -setup( +setuptools.setup( name='aprs', version=__version__, description='Python Bindings for APRS.', author='Greg Albrecht', - author_email='gba@orionlabs.co', + author_email='gba@orionlabs.io', packages=['aprs'], package_data={'': ['LICENSE']}, license=open('LICENSE').read(), diff --git a/tests/constants.py b/tests/constants.py index 01db6f7e2c023c0f7e83c53912a7cf4b5a40ccb3..c0a22b0b8a6924235336cade206644790c542771 100644 --- a/tests/constants.py +++ b/tests/constants.py @@ -3,9 +3,9 @@ """Constants for APRS Module Tests.""" -__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.co>' +__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.io>' __license__ = 'Apache License, Version 2.0' -__copyright__ = 'Copyright 2015 Orion Labs, Inc.' +__copyright__ = 'Copyright 2016 Orion Labs, Inc.' TEST_FRAMES = 'tests/test_frames.log' diff --git a/tests/context.py b/tests/context.py index 37f3193a10a7f53373409f66ebecda4e91d0c9c5..aa6f0baafc79bdbdb24e09ce46951df53d551761 100644 --- a/tests/context.py +++ b/tests/context.py @@ -3,9 +3,9 @@ """Context for tests for APRS Python Module.""" -__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.co>' +__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.io>' __license__ = 'Apache License, Version 2.0' -__copyright__ = 'Copyright 2015 Orion Labs, Inc.' +__copyright__ = 'Copyright 2016 Orion Labs, Inc.' import os diff --git a/tests/test_aprs.py b/tests/test_aprs.py index be9c476e2a52192f5f2d8e6e6dd2060d7c0f6475..6fc3992296eb14cd29d724acd22f8fec50b3cea9 100644 --- a/tests/test_aprs.py +++ b/tests/test_aprs.py @@ -3,9 +3,9 @@ """Tests for Python APRS-IS Bindings.""" -__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.co>' +__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.io>' __license__ = 'Apache License, Version 2.0' -__copyright__ = 'Copyright 2015 Orion Labs, Inc.' +__copyright__ = 'Copyright 2016 Orion Labs, Inc.' import random diff --git a/tests/test_util.py b/tests/test_util.py index 04c8aff5fd87f52606158de6565bbb9c4697e59b..cbe6940ca4ba203fbb1819eab45f10af57d769e6 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -3,9 +3,9 @@ """Tests for Python APRS util methods.""" -__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.co>' +__author__ = 'Greg Albrecht W2GMD <gba@orionlabs.io>' __license__ = 'Apache License, Version 2.0' -__copyright__ = 'Copyright 2015 Orion Labs, Inc.' +__copyright__ = 'Copyright 2016 Orion Labs, Inc.' import unittest