You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
359 B
Python
13 lines
359 B
Python
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)
|