Skip to content

Commit 240cec3

Browse files
committed
Fix the package
1 parent 11ad1be commit 240cec3

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

licensing/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
from licensing.models import *
2-
from licensing.helpers import *
3-
from licensing.methods import *

licensing/methods.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
@author: Artem Los
66
"""
77

8-
from helpers import Helpers
9-
from models import *
8+
from licensing.internal import Helpers
9+
from licensing.models import *
1010

1111
class Key:
1212

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
setup(
33
name = 'licensing', # How you named your package folder (MyLib)
44
packages = ['licensing'], # Chose the same as "name"
5-
version = '0.1', # Start with a small number and increase it with every change you make
5+
version = '0.2', # Start with a small number and increase it with every change you make
66
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
77
description = 'Client library for Cryptolens licensing Web API.', # Give a short description about your library
88
author = '', # Type in your name

licensing/test.py renamed to test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
@author: Artem Los
66
"""
77

8-
from helpers import Helpers
9-
from models import Response, RSAPublicKey
10-
from methods import Key
8+
from licensing.internal import Helpers
9+
from licensing.models import Response, RSAPublicKey
10+
from licensing.methods import Key
1111

1212
pubKey = "<RSAKeyValue><Modulus>sGbvxwdlDbqFXOMlVUnAF5ew0t0WpPW7rFpI5jHQOFkht/326dvh7t74RYeMpjy357NljouhpTLA3a6idnn4j6c3jmPWBkjZndGsPL4Bqm+fwE48nKpGPjkj4q/yzT4tHXBTyvaBjA8bVoCTnu+LiC4XEaLZRThGzIn5KQXKCigg6tQRy0GXE13XYFVz/x1mjFbT9/7dS8p85n8BuwlY5JvuBIQkKhuCNFfrUxBWyu87CFnXWjIupCD2VO/GbxaCvzrRjLZjAngLCMtZbYBALksqGPgTUN7ZM24XbPWyLtKPaXF2i4XRR9u6eTj5BfnLbKAU5PIVfjIS+vNYYogteQ==</Modulus><Exponent>AQAB</Exponent></RSAKeyValue>"
1313

0 commit comments

Comments
 (0)