From d6b55c7aafd035fe2542d7303d2a0bcdfa03d6bc Mon Sep 17 00:00:00 2001 From: Vadim Lebedev Date: Wed, 20 Jul 2022 08:49:55 +0200 Subject: [PATCH] package description fix --- Makefile | 3 +++ setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d941090..1784738 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,9 @@ verify: install: python setup.py install +wheel: + pip wheel --wheel-dir dist/ . + publish: python setup.py register python setup.py sdist upload diff --git a/setup.py b/setup.py index 097d338..ebbc561 100644 --- a/setup.py +++ b/setup.py @@ -93,7 +93,7 @@ __libarchive = Extension(name='libarchive.__libarchive', setup(name = name, version = versrel, - description = 'A libarchive wrapper for Python.', + description = 'A libarchive wrapper for Python supporting password protection.', long_description = long_description, license = 'BSD-style license', platforms = ['any'],