FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
client-encryption-python/setup.py at main · talha-API/client-encryption-python · GitHub
talha-API
/
client-encryption-python
Public
forked from
Mastercard/client-encryption-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
client-encryption-python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
26 lines (24 loc) · 1.06 KB
Breadcrumbs
client-encryption-python
/
setup.py
Copy path
File metadata and controls
26 lines (24 loc) · 1.06 KB
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
21
22
23
24
25
26
from
setuptools
import
setup
exec
(
open
(
'client_encryption/version.py'
).
read
())
setup
(
name
=
'mastercard-client-encryption'
,
python_requires
=
'>=3.5.4'
,
version
=
__version__
,
description
=
'Mastercard Client encryption.'
,
long_description
=
'Library for Mastercard API compliant payload encryption/decryption.'
,
author
=
'Mastercard'
,
url
=
'https://github.com/Mastercard/client-encryption-python'
,
license
=
'MIT'
,
packages
=
[
'client_encryption'
],
classifiers
=
[
'Development Status :: 5 - Production/Stable'
,
'Intended Audience :: Developers'
,
'Natural Language :: English'
,
'Operating System :: OS Independent'
,
'Programming Language :: Python :: 3.6'
,
'Programming Language :: Python :: 3.7'
,
'Programming Language :: Python :: 3.8'
,
'Topic :: Software Development :: Libraries :: Python Modules'
],
tests_require
=
[
'coverage'
],
install_requires
=
[
'pycryptodome>=3.8.1'
,
'pyOpenSSL>=22.0.0'
,
'setuptools>=39.0.1'
,
'cryptography>=38.0.0'
]
)
Back
|
FazBrowse Home
|
New Git URL