-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
30 lines (30 loc) · 1005 Bytes
/
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
27
28
29
30
from setuptools import setup
setup(
name='requests_pkcs12',
version=open('version', 'r').read(),
description='Add PKCS#12 support to the requests library in a clean way, without monkey patching or temporary files',
long_description=open('README.rst', 'r').read(),
url='https://github.com/m-click/requests_pkcs12',
author='Volker Diels-Grabsch',
author_email='[email protected]',
license='ISC',
python_requires='>=3.7',
install_requires=[
'cryptography (>=42.0.0)',
'requests (>=2.26.0)',
],
extras_require={
'dev': [
'twine (>=3.4.2)',
'wheel (>=0.37.0)',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
],
py_modules=['requests_pkcs12'],
)