Skip to content

Commit cb882a4

Browse files
authored
Merge pull request #208 from getyoti/SDK-1600-UseREADMEForProjectDescription
SDK-1600: Use README for project description
2 parents 92e9ad6 + 4b2bac4 commit cb882a4

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ pytz==2020.1
1111
requests>=2.20.0
1212
urllib3>=1.24.3
1313
deprecated==1.2.10
14-
wheel==0.24.0
14+
wheel==0.33.6
1515
iso8601==0.1.12

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pyyaml==5.2 # via -r requirements.in
2424
requests==2.21.0 # via -r requirements.in
2525
six==1.10.0 # via cryptography, protobuf, pyopenssl
2626
urllib3==1.24.3 # via -r requirements.in, requests
27-
wheel==0.24.0 # via -r requirements.in
27+
wheel==0.33.6 # via -r requirements.in
2828
wrapt==1.11.2 # via deprecated
2929

3030
# The following packages are considered to be unsafe in a requirements file:

setup.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@
22
from setuptools import find_packages
33
from setuptools import setup
44

5-
long_description = (
6-
"This package contains the tools you need to quickly "
7-
"integrate your Python back-end with Yoti, so that your "
8-
"users can share their identity details with your "
9-
"application in a secure and trusted way."
10-
)
11-
125
version = {}
136
with open("yoti_python_sdk/version.py") as fp:
147
exec(fp.read(), version)
@@ -19,7 +12,8 @@
1912
packages=find_packages(include=["yoti_python_sdk", "yoti_python_sdk.*"]),
2013
license="MIT",
2114
description="The Yoti Python SDK, providing API support for Login, Verify (2FA) and Age Verification.",
22-
long_description=long_description,
15+
long_description=open("README.md").read(),
16+
long_description_content_type="text/markdown",
2317
url="https://github.com/getyoti/yoti-python-sdk",
2418
author="Yoti",
2519
author_email="[email protected]",

0 commit comments

Comments
 (0)