diff --git a/nanpa/__init__.py b/nanpa/__init__.py new file mode 100644 index 0000000..75e6812 --- /dev/null +++ b/nanpa/__init__.py @@ -0,0 +1,9 @@ +#!/usr/bin/env python3 +# North American Numbering Plan Administration (NANPA) API Client - Developed by acidvegas in Python (https://git.acid.vegas/nanpa) +# nanpa/__init__.py + +from .client import NanpaAPI + +__version__ = '1.0.1' +__author__ = 'acidvegas' +__all__ = ['NanpaAPI'] \ No newline at end of file diff --git a/nanpa/nanpa/client.py b/nanpa/client.py similarity index 100% rename from nanpa/nanpa/client.py rename to nanpa/client.py diff --git a/nanpa/nanpa/__init__.py b/nanpa/nanpa/__init__.py deleted file mode 100644 index 4e6fc77..0000000 --- a/nanpa/nanpa/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -from .client import NanpaAPI - -__version__ = '1.0.0' -__author__ = 'acidvegas' -__all__ = ['NanpaAPI'] \ No newline at end of file diff --git a/setup.py b/setup.py index e61c080..f79380f 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ with open('README.md', encoding='utf-8') as fh: setup( name='nanpa', - version='1.0.0', + version='1.0.1', author='acidvegas', author_email='acid.vegas@acid.vegas', description='North American Numbering Plan Administration (NANPA) API Client',