diff --git a/meta/__init__.py b/meta/__init__.py new file mode 100644 index 0000000..b89b21f --- /dev/null +++ b/meta/__init__.py @@ -0,0 +1,3 @@ +__name__="store" +__version__="1.0" +__author__="steve@the-phi.com" diff --git a/setup.py b/setup.py index 9df2d89..0ca4cfa 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,10 @@ from setuptools import setup, find_packages -import store +import meta _args = { "name":store.__name__, - "version":store.__version__, - "author":store.__author__, - "packages":['store'], + "version":meta.__version__, + "author":meta.__author__, + "packages":['meta','store'], "keywords":["stripe","payment","monetization"], "install_requires":["stripe"], "url":"dev.the-phi.com/store", diff --git a/store/__init__.py b/store/__init__.py index 9d9c5a2..79f5348 100644 --- a/store/__init__.py +++ b/store/__init__.py @@ -1,9 +1,7 @@ import stripe import get import set -__name__="store" -__version__="1.0" -__author__="steve@the-phi.com" +from meta import * def init(key:str): """ Initializing stripe store with a key