Skip to content
Snippets Groups Projects
Commit 2f62b406 authored by Erik Reid's avatar Erik Reid
Browse files

translated setup.py to pyproject.toml, added license to metadata

parent e502c95d
No related branches found
No related tags found
No related merge requests found
MIT License MIT License
Copyright (c) 2022 GÉANT Vereniging Copyright (c) 2025 GÉANT Vereniging
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal
...@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ...@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. SOFTWARE.
\ No newline at end of file
from setuptools import setup, find_packages
setup(
name="stripe-checkout",
version="0.19",
author="GEANT",
author_email="swd@geant.org",
description="Stripe custom checkout support service",
url=("https://gitlab.software.geant.org/geant-swd/stripe-checkout"),
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,
license='MIT',
license_files=['LICENSE.txt']
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment