Skip to content

Commit 4198ee1

Browse files
committed
update module setup
1 parent bf78911 commit 4198ee1

File tree

13 files changed

+12
-12
lines changed

13 files changed

+12
-12
lines changed

geopayment/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from geopayment.providers import TBCProvider
2+
3+
__version__ = '0.1'
File renamed without changes.
File renamed without changes.
File renamed without changes.

geopayment/providers/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from geopayment.providers.tbc import TBCProvider

geopayment/providers/tbc/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .provider import TBCProvider

providers/tbc/provider.py renamed to geopayment/providers/tbc/provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from typing import Dict, Any, Optional, Tuple
1010

11-
from providers.utils import tbc_params, _request
11+
from geopayment.utils import tbc_params, _request
1212

1313

1414
class BaseTBCProvider(object):
File renamed without changes.

providers/utils.py renamed to geopayment/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from functools import wraps
1111
import requests
1212

13-
from providers.constants import (
13+
from .constants import (
1414
CURRENCY_CODES,
1515
CURRENCY_SYMBOLS,
1616
ALLOW_CURRENCY_CODES

providers/tbc/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)