Skip to content

Commit 0eecee9

Browse files
committed
3.13 setup.py updates
1 parent fe7e03e commit 0eecee9

File tree

1 file changed

+23
-27
lines changed

1 file changed

+23
-27
lines changed

setup.py

Lines changed: 23 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,26 @@
1-
# -*- coding: utf-8 -*-
2-
from setuptools import find_packages
3-
from setuptools import setup
4-
5-
version = {}
6-
with open("yoti_python_sdk/version.py") as fp:
7-
exec(fp.read(), version)
1+
from setuptools import setup, find_packages
82

93
setup(
10-
name="yoti",
11-
version=version["__version__"],
12-
packages=find_packages(include=["yoti_python_sdk", "yoti_python_sdk.*"]),
13-
license="MIT",
14-
description="The Yoti Python SDK, providing API support for Login, Verify (2FA) and Age Verification.",
15-
long_description=open("README.md").read(),
16-
long_description_content_type="text/markdown",
17-
url="https://github.com/getyoti/yoti-python-sdk",
18-
author="Yoti",
19-
author_email="[email protected]",
4+
name="your_package_name", # Replace with your actual package name
5+
version="your_package_version", # Replace with your actual package version
6+
packages=find_packages(),
207
install_requires=[
21-
"deprecated==1.2.13",
22-
"cryptography>=2.2.1",
23-
"protobuf==3.13.0",
24-
"requests>=2.11.1",
25-
"future>=0.18.2",
8+
"deprecated==1.2.10",
9+
"cryptography==44.0.2",
10+
"protobuf==4.25.3",
11+
"requests==2.32.3",
12+
"future==0.18.3",
2613
"asn1==2.2.0",
27-
"pyopenssl>=18.0.0",
28-
"iso8601==1.0.2",
29-
"wheel==0.37.1",
30-
"pytz==2022.1",
14+
"pyopenssl==25.0.0",
15+
"iso8601==0.1.14",
16+
"wheel==0.43.0",
17+
"pytz==2024.1",
18+
"cffi==1.17.1",
19+
"charset-normalizer==3.4.1",
20+
"idna==2.7",
21+
"urllib3==2.3.0",
22+
"six==1.16.0",
23+
"wrapt==1.17.2",
3124
],
3225
extras_require={
3326
"examples": [
@@ -63,7 +56,10 @@
6356
"Programming Language :: Python :: 3.8",
6457
"Programming Language :: Python :: 3.9",
6558
"Programming Language :: Python :: 3.10",
59+
"Programming Language :: Python :: 3.11",
60+
"Programming Language :: Python :: 3.12",
61+
"Programming Language :: Python :: 3.13",
6662
"Topic :: Software Development :: Libraries :: Python Modules",
6763
],
6864
keywords="yoti sdk 2FA multifactor authentication verification identity login register verify 2Factor",
69-
)
65+
)

0 commit comments

Comments
 (0)