From eaf59856d3137eb1d55269b0651564bf14fcab29 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Fri, 13 May 2022 17:09:11 +1200 Subject: [PATCH] Renamed module as "-" is invalid --- akauntingpy/__init__.py | 2 ++ {akaunting-py => akauntingpy}/api.py | 0 akaunting-py/__init__.py => akauntingpy/exceptions.py | 0 setup.py | 6 +++--- 4 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 akauntingpy/__init__.py rename {akaunting-py => akauntingpy}/api.py (100%) rename akaunting-py/__init__.py => akauntingpy/exceptions.py (100%) diff --git a/akauntingpy/__init__.py b/akauntingpy/__init__.py new file mode 100644 index 0000000..ca64440 --- /dev/null +++ b/akauntingpy/__init__.py @@ -0,0 +1,2 @@ +from akauntingpy.api import WHMCS +from akauntingpy.exceptions import * \ No newline at end of file diff --git a/akaunting-py/api.py b/akauntingpy/api.py similarity index 100% rename from akaunting-py/api.py rename to akauntingpy/api.py diff --git a/akaunting-py/__init__.py b/akauntingpy/exceptions.py similarity index 100% rename from akaunting-py/__init__.py rename to akauntingpy/exceptions.py diff --git a/setup.py b/setup.py index 455a7b8..2516efe 100644 --- a/setup.py +++ b/setup.py @@ -6,18 +6,18 @@ with open('README.md', 'r') as readme: long_description = readme.read() -version = '0.3.0' +version = '0.0.1' setup( - name='akaunting-py', + name='akauntingpy', version=version, author='CyberCinch', description='Python interface to the Akaunting API.', url='https://github.com/cybercinch/akaunting-py', long_description=long_description, long_description_content_type='text/markdown', - license='GPL-3', + license='MIT', keywords='akaunting api library', packages=find_packages(), install_requires=[