master
Steve Nyemba 10 months ago
parent d020878fee
commit 327795f770

@ -0,0 +1,3 @@
__name__="store"
__version__="1.0"
__author__="steve@the-phi.com"

@ -1,10 +1,10 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
import store import meta
_args = { _args = {
"name":store.__name__, "name":store.__name__,
"version":store.__version__, "version":meta.__version__,
"author":store.__author__, "author":meta.__author__,
"packages":['store'], "packages":['meta','store'],
"keywords":["stripe","payment","monetization"], "keywords":["stripe","payment","monetization"],
"install_requires":["stripe"], "install_requires":["stripe"],
"url":"dev.the-phi.com/store", "url":"dev.the-phi.com/store",

@ -1,9 +1,7 @@
import stripe import stripe
import get import get
import set import set
__name__="store" from meta import *
__version__="1.0"
__author__="steve@the-phi.com"
def init(key:str): def init(key:str):
""" """
Initializing stripe store with a key Initializing stripe store with a key

Loading…
Cancel
Save