From bb5fc240d6b9ef4e0a5a3beff704a4880beb3e95 Mon Sep 17 00:00:00 2001 From: Mike McLean Date: Feb 20 2019 15:02:54 +0000 Subject: PR#1222: Include CLI plugins in setup.py Merges #1222 https://pagure.io/koji/pull-request/1222 Fixes: #1221 https://pagure.io/koji/issue/1221 Update PyPi to 1.16.1 + cli plugins --- diff --git a/Makefile b/Makefile index e3bc37c..78322c5 100644 --- a/Makefile +++ b/Makefile @@ -112,7 +112,7 @@ pypi: rm -rf dist python setup.py sdist # py2 - virtualenv build_py2 + virtualenv -p /usr/bin/python2 build_py2 build_py2/bin/pip install --upgrade pip setuptools wheel virtualenv build_py2/bin/python setup.py bdist_wheel rm -rf build_py2 diff --git a/setup.py b/setup.py index 6e0d730..e5916ad 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def get_install_requires(): setup( name="koji", - version="1.16.0", + version="1.17.0", description=("Koji is a system for building and tracking RPMS. The base" " package contains shared libraries and the command-line" " interface."), @@ -52,10 +52,11 @@ setup( "Operating System :: POSIX :: Linux", "Topic :: Utilities" ], - packages=['koji', 'koji_cli'], + packages=['koji', 'koji_cli', 'koji_cli_plugins'], package_dir={ 'koji': 'koji', 'koji_cli': 'cli/koji_cli', + 'koji_cli_plugins': 'plugins/cli', }, # doesn't make sense, as we have only example config #data_files=[