Skip to content

Commit 231908a

Browse files
make it integrateable
1 parent ab0da76 commit 231908a

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

dev/test_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import time
2323
import pprint
2424

25-
from lucit_licensing_python.manager import LucitLicensingManager
25+
from lucit_licensing_python.licensing_manager import LucitLicensingManager
2626

2727

2828
class LTC:

dev/test_start.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
import sys
1010
import time
1111
import pprint
12-
from lucit_licensing_python.manager import LucitLicensingManager
13-
from lucit_licensing_python.exceptions import NoValidatedLucitLicense
12+
from lucit_licensing_python.licensing_manager import LucitLicensingManager
13+
from lucit_licensing_python.licensing_exceptions import NoValidatedLucitLicense
1414

1515

1616
class LTC:

lucit_licensing_python/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from lucit_licensing_python.cli import cli
2-
from lucit_licensing_python.exceptions import NoValidatedLucitLicense
3-
from lucit_licensing_python.manager import LucitLicensingManager
1+
from lucit_licensing_python.licensing_cli import cli
2+
from lucit_licensing_python.licensing_exceptions import NoValidatedLucitLicense
3+
from lucit_licensing_python.licensing_manager import LucitLicensingManager

lucit_licensing_python/cli.py renamed to lucit_licensing_python/licensing_cli.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33
#
4-
# File: lucit_licensing_python/cli.py
4+
# File: lucit_licensing_python/licensing_cli.py
55
#
66
# Project website: https://www.lucit.tech/lucit-licensing-python.html
77
# Github: https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python
@@ -26,11 +26,11 @@
2626
import textwrap
2727
from pathlib import Path
2828
try:
29-
from manager import LucitLicensingManager
30-
from exceptions import NoValidatedLucitLicense
29+
from licensing_manager import LucitLicensingManager
30+
from licensing_exceptions import NoValidatedLucitLicense
3131
except ModuleNotFoundError:
32-
from lucit_licensing_python.manager import LucitLicensingManager
33-
from lucit_licensing_python.exceptions import NoValidatedLucitLicense
32+
from lucit_licensing_python.licensing_manager import LucitLicensingManager
33+
from lucit_licensing_python.licensing_exceptions import NoValidatedLucitLicense
3434

3535

3636
async def cli():

lucit_licensing_python/exceptions.py renamed to lucit_licensing_python/licensing_exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33
#
4-
# File: lucit_licensing_python/exceptions.py
4+
# File: lucit_licensing_python/licensing_exceptions.py
55
#
66
# Project website: https://www.lucit.tech/lucit-licensing-python.html
77
# Github: https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python

lucit_licensing_python/manager.py renamed to lucit_licensing_python/licensing_manager.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33
#
4-
# File: lucit_licensing_python/manager.py
4+
# File: lucit_licensing_python/licensing_manager.py
55
#
66
# Project website: https://www.lucit.tech/lucit-licensing-python.html
77
# Github: https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python
@@ -35,9 +35,9 @@
3535
from simplejson.errors import JSONDecodeError
3636
from typing import Optional, Callable
3737
try:
38-
from exceptions import NoValidatedLucitLicense
38+
from licensing_exceptions import NoValidatedLucitLicense
3939
except ModuleNotFoundError:
40-
from lucit_licensing_python.exceptions import NoValidatedLucitLicense
40+
from lucit_licensing_python.licensing_exceptions import NoValidatedLucitLicense
4141

4242
logger = logging.getLogger("lucit_licensing_python")
4343

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
setup(
2828
ext_modules=cythonize(
2929
['lucit_licensing_python/__init__.py',
30-
'lucit_licensing_python/cli.py',
31-
'lucit_licensing_python/exceptions.py',
32-
'lucit_licensing_python/manager.py'],
30+
'lucit_licensing_python/licensing_cli.py',
31+
'lucit_licensing_python/licensing_exceptions.py',
32+
'lucit_licensing_python/licensing_manager.py'],
3333
annotate=False),
3434
name='lucit-licensing-python',
3535
version="1.8.2",

unittest_lucit_licensing_python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import logging
2222
import time
2323
import pprint
24-
from lucit_licensing_python.manager import LucitLicensingManager
24+
from lucit_licensing_python.licensing_manager import LucitLicensingManager
2525

2626

2727
class LTC:

0 commit comments

Comments
 (0)