diff --git a/lib_afc_mosaic/__init__.py b/lib_afc_mosaic/__init__.py new file mode 100755 index 0000000..598cd3f --- /dev/null +++ b/lib_afc_mosaic/__init__.py @@ -0,0 +1,9 @@ +""" +lib_afc_mosaic +--------------------------------------- + +A Python library for working with AFC Mosaic files + +""" + +from lib_afc_mosaic.universe_map_file import AFCMUniverseMapFile diff --git a/lib_afc_mosiac/afcbusiness.py b/lib_afc_mosaic/afcbusiness.py similarity index 100% rename from lib_afc_mosiac/afcbusiness.py rename to lib_afc_mosaic/afcbusiness.py diff --git a/lib_afc_mosiac/afs3exception.py b/lib_afc_mosaic/afs3exception.py similarity index 100% rename from lib_afc_mosiac/afs3exception.py rename to lib_afc_mosaic/afs3exception.py diff --git a/lib_afc_mosiac/helpers.py b/lib_afc_mosaic/helpers.py similarity index 100% rename from lib_afc_mosiac/helpers.py rename to lib_afc_mosaic/helpers.py diff --git a/lib_afc_mosiac/universe_map_file.py b/lib_afc_mosaic/universe_map_file.py similarity index 99% rename from lib_afc_mosiac/universe_map_file.py rename to lib_afc_mosaic/universe_map_file.py index 932d34d..86795cb 100644 --- a/lib_afc_mosiac/universe_map_file.py +++ b/lib_afc_mosaic/universe_map_file.py @@ -9,7 +9,7 @@ import uuid import phonenumbers -from lib_afc_mosiac.helpers import ( +from lib_afc_mosaic.helpers import ( read_voterdata_csv_stream, write_csv_file ) diff --git a/lib_afc_mosiac/__init__.py b/lib_afc_mosiac/__init__.py deleted file mode 100755 index 106975f..0000000 --- a/lib_afc_mosiac/__init__.py +++ /dev/null @@ -1,10 +0,0 @@ -""" -lib_afc_mosiac ---------------------------------------- - -A Python library for working with AFC Mosiac files - -""" - -from lib_afc_mosiac.universe_map_file import AFCMUniverseMapFile -#from lib_afc_api.afccampaign import AFCCampaign diff --git a/setup.py b/setup.py index 3f757c5..56fc13c 100644 --- a/setup.py +++ b/setup.py @@ -8,8 +8,8 @@ with open('README.md', 'r') as f: long_description = f.read() setup( - name='lib_afc_mosiac', - version='0.1.4', + name='lib_afc_mosaic', + version='0.1.5', author='', author_email='', description='',