From 8ad65977806aeac792da9fbdb43254f0bef10246 Mon Sep 17 00:00:00 2001 From: Chenxiong Qi Date: Aug 31 2017 02:45:34 +0000 Subject: Don't install bin and config files Since rpkg example binary is not installed into system path as an executable, there is no need to install rpkg binary and config files into from a Python binary distribution package. Developers and users can also benefit from this change to install rpkg with pip conveniently. Signed-off-by: Chenxiong Qi --- diff --git a/setup.py b/setup.py index 4f97057..0972148 100755 --- a/setup.py +++ b/setup.py @@ -13,9 +13,6 @@ setup( license="GPLv2+", url="https://pagure.io/rpkg", packages=find_packages(), - scripts=['bin/rpkg'], - data_files=[('/etc/bash_completion.d', ['etc/bash_completion.d/rpkg.bash']), - ('/etc/rpkg', ['etc/rpkg/rpkg.conf'])], install_requires=['six', 'pycurl', 'cccolutils'], # + koji, but it's not in PyPI tests_require=['nose', 'mock', 'GitPython'], test_suite='nose.collector',