installer ...

master
Steve Nyemba 10 months ago
parent 023eefe9e1
commit 4498ee8e3a

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

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

Loading…
Cancel
Save