From 4081a42d57735d00be6d8bdb2476f33bbea413cc Mon Sep 17 00:00:00 2001 From: Janne Heinonen Date: Tue, 21 Mar 2023 14:17:30 +0200 Subject: [PATCH 1/2] Added correct version number and licensing information --- setup.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8966ff9..2bd897a 100644 --- a/setup.py +++ b/setup.py @@ -2,6 +2,16 @@ setup( name='privx_api', - version='0.1', + version='26.0.0', packages=['privx_api'], + license='Apache Licence 2.0', + url='https://github.com/SSHcom/privx-sdk-for-python', + classifiers=[ + 'Intended Audience :: Developers', + 'Intended Audience :: System Administrators', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Software Development :: Libraries :: Python Modules' + ], ) + From ab1662802629497241dadd394ad29232fad9885a Mon Sep 17 00:00:00 2001 From: Janne Heinonen Date: Tue, 21 Mar 2023 14:28:56 +0200 Subject: [PATCH 2/2] Linter fixes --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2bd897a..1ced546 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,4 @@ +"""Version information for pip.""" from setuptools import setup setup( @@ -11,7 +12,6 @@ 'Intended Audience :: System Administrators', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Topic :: Software Development :: Libraries :: Python Modules' + 'Topic :: Software Development :: Libraries :: Python Modules' ], ) -