Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
stripe-checkout
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
geant-swd
stripe-checkout
Commits
2f62b406
Commit
2f62b406
authored
3 weeks ago
by
Erik Reid
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
LICENSE.txt
+2
-2
2 additions, 2 deletions
LICENSE.txt
setup.py
+0
-34
0 additions, 34 deletions
setup.py
with
2 additions
and
36 deletions
LICENSE.txt
+
2
−
2
View file @
2f62b406
MIT License
MIT License
Copyright (c) 202
2
GÉANT Vereniging
Copyright (c) 202
5
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
This diff is collapsed.
Click to expand it.
setup.py
deleted
100644 → 0
+
0
−
34
View file @
e502c95d
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
'
]
)
This diff is collapsed.
Click to expand it.
Erik Reid
@erik.reid
mentioned in commit
9e45f99f
·
3 weeks ago
mentioned in commit
9e45f99f
mentioned in commit 9e45f99f4346ee9522cb2cded87a716bcad58d4a
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment