forked from Mastercard/client-encryption-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 1.06 KB
/
setup.py
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']
)