Skip to content
Snippets Groups Projects
Select Git revision
  • ff4b239075c08497a82be31ef2f58215bfdb9a64
  • develop default
  • master protected
  • 0.18
  • 0.17
  • 0.16
  • 0.15
  • 0.14
  • 0.13
  • 0.12
  • 0.11
  • 0.10
  • 0.9
  • 0.8
  • 0.7
  • 0.6
  • 0.5
  • 0.4
  • 0.3
  • 0.2
  • 0.1
21 results

setup.py

Blame
  • user avatar
    geant-release-service authored
    ff4b2390
    History
    setup.py 755 B
    from setuptools import setup, find_packages
    
    setup(
        name="stripe-checkout",
        version="0.9",
        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,
    )