From 20e35f018ca3124814af9d02e43cf50c07f16d1d Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Fri, 4 Mar 2016 09:34:29 +0000 Subject: [PATCH] fix setup.py not including subpackages --- aprslib/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aprslib/__init__.py b/aprslib/__init__.py index 5f756bd..d5f1df9 100644 --- a/aprslib/__init__.py +++ b/aprslib/__init__.py @@ -41,7 +41,7 @@ from datetime import date as _date __date__ = str(_date.today()) del _date -__version__ = "0.6.42" +__version__ = "0.6.43" __author__ = "Rossen Georgiev" __all__ = ['IS', 'parse', 'passcode'] diff --git a/setup.py b/setup.py index 7855e49..360ed92 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -from setuptools import setup +from setuptools import setup, find_packages from codecs import open from os import path @@ -31,7 +31,7 @@ setup( ], test_suite='tests', keywords='aprs aprslib parse parsing aprs-is library base91', - packages=['aprslib'], + packages=['aprslib'] + ['aprslib.'+x for x in find_packages(where='aprslib')], install_requires=[], zip_safe=True, )