Skip to content
Snippets Groups Projects
setup.py 420 B
from setuptools import setup, find_packages

setup(
    name='stripe-checkout',
    version="0.1",
    author='GEANT',
    author_email='swd@geant.org',
    description='Stripe custom checkout support service',
    url=('TBD'),
    packages=find_packages(),
    install_requires=[
        'jsonschema',
        'flask',
        'flask-cors',
        'stripe',
        'requests',
    ],
    include_package_data=True,
)