-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.56 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.56 KB
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
31
32
33
34
35
36
37
38
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="restpki-client",
version='1.2.1',
author="Ismael Medeiros",
author_email="IsmaelM@lacunasoftware.com",
description="Client package for REST PKI",
long_description=long_description,
keywords='python pki rest certificate digital signature x509',
url="https://github.com/LacunaSoftware/RestPkiPythonClient",
packages=setuptools.find_packages(),
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Information Technology',
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
"Operating System :: OS Independent",
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=[
'simplejson>=3.20.2', # Updated to latest version (compatible with Python 2.7, 3.3+)
'six>=1.17.0', # Updated to latest version (compatible with Python 2.7, 3.3+)
'requests>=2.32.0; python_version>="3.9"', # Secure version for Python 3.9+ (fixes CVE-2024-35195)
'requests>=2.21.0,<2.28.0; python_version<"3.9"', # Compatible version for older Python (Python 2.7, 3.3-3.6)
],
)