Add setup.py for install with pip

Make possible installation with pip.
Change-Id: I8eec015142c4f29eadff0dac2781782b76dea308
This commit is contained in:
Sagi Shnaidman
2020-05-22 21:22:46 +03:00
parent f3610ad0e1
commit c9da50e7e7
5 changed files with 81 additions and 8 deletions

8
setup.py Normal file
View File

@@ -0,0 +1,8 @@
# Copyright Red Hat, Inc. All Rights Reserved.
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
import setuptools
setuptools.setup(
setup_requires=['pbr'],
pbr=True)