From 935633c5ea9f2b5c4321d924af166367008ac4b3 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Wed, 24 Feb 2016 22:22:10 +0100 Subject: Added Python wrapper for pki pkcs12-import. A Python wrapper module has been added for the pki pkcs12-import command to provide a mechanism to implement a workaround for JSS import limitation. Additional fixes by cheimes have been merged into this patch: setup.py: We must track all sub-packages manually. pylint-build-scan.py: pylint confuses the 'pki' package with the 'pki' command. The workaround symlinks the command and analysis the command under its alternative name. https://fedorahosted.org/pki/ticket/1742 --- base/common/python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/common/python/setup.py') diff --git a/base/common/python/setup.py b/base/common/python/setup.py index 16c1d1760..2ab033784 100644 --- a/base/common/python/setup.py +++ b/base/common/python/setup.py @@ -84,7 +84,7 @@ and set up in less than an hour.""", license='GPL', keywords='pki x509 cert certificate', url='http://pki.fedoraproject.org/', - packages=['pki'], + packages=['pki', 'pki.cli'], requirements=['python-nss', 'requests', 'six'], classifiers=[ 'Development Status :: 5 - Production/Stable', -- cgit