Skip to content
Snippets Groups Projects
Select Git revision
  • 147b003c80f5cfdaa3cc910afc0f7abe45c3147f
  • develop default
  • master protected
  • inventoryProvider-functional
  • inventoryProvider-morework2
  • circuit-service-details-fix
  • lookup-SPECTRUM-SCHF-ports
  • inventoryProvider-1267-cleanup
  • inventoryProvider-moreWork
  • feature/DBOARD3-958
  • release/0.110
  • fix-uuid-validation-error
  • docker-poc
  • 0.154
  • 0.153
  • 0.152
  • 0.151
  • 0.150
  • 0.149
  • 0.148
  • 0.147
  • 0.146
  • 0.145
  • 0.144
  • 0.143
  • 0.142
  • 0.141
  • 0.140
  • 0.139
  • 0.138
  • 0.137
  • 0.136
  • 0.135
33 results

worker.py

Blame
  • setup.py 756 B
    from setuptools import setup, find_packages
    
    setup(
        name="stripe-checkout",
        version="0.13",
        author="GEANT",
        author_email="swd@geant.org",
        description="Stripe custom checkout support service",
        url=("TBD"),
        packages=find_packages(),
        install_requires=[
            "django~=4.2.18",
            "dj_database_url==2.3.0",  # pin for security
            "jsonschema",
            "stripe",
            "requests",
            "click",
        ],
        extras_require={
            "prod": [
                "gunicorn",
                "uvicorn",
                "psycopg2",
            ],
        },
        entry_points={
            "console_scripts": [
                "generate_report=stripe_checkout.stripe_checkout.generate_report:main",
            ]
        },
        include_package_data=True,
    )