FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
SimPay-API-Python/setup.py at main · SimPaypl/SimPay-API-Python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
SimPaypl
/
SimPay-API-Python
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
SimPay-API-Python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
20 lines (18 loc) · 665 Bytes
Breadcrumbs
SimPay-API-Python
/
setup.py
Copy path
File metadata and controls
20 lines (18 loc) · 665 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python3
from
setuptools
import
setup
,
find_packages
setup
(
name
=
'simpay-api'
,
version
=
'3.0.1'
,
description
=
'Python wrapper for Simpay API'
,
long_description
=
open
(
'README.md'
,
encoding
=
'utf-8'
).
read
(),
long_description_content_type
=
"text/markdown"
,
author
=
'Rafał Więcek'
,
author_email
=
"kontakt@simpay.pl"
,
url
=
'https://github.com/SimPaypl/SimPay-API-Python'
,
python_requires
=
'>3.0'
,
packages
=
find_packages
(
exclude
=
[
'tests*'
,
'examples*'
]),
test_suite
=
'tests'
,
include_package_data
=
True
,
install_requires
=
[
'requests>=2.26.0'
,
'pydantic>=1.10.7'
],
extras_require
=
{
'docs'
: [
'sphinx>=7.0.1'
]},
)
Back
|
FazBrowse Home
|
New Git URL