diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-09-06 14:32:14 -0700 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-09-21 19:36:01 +0000 |
commit | e6074eb9acbd3964ee0c1ea6a9b5ec68fa309687 (patch) | |
tree | d179de82395003a6281427b1642ef40a1f577ef5 /contrib/python/pypodman/Makefile | |
parent | 09f506930c1c585b12e9ad89044528da23d2851a (diff) | |
download | podman-e6074eb9acbd3964ee0c1ea6a9b5ec68fa309687.tar.gz podman-e6074eb9acbd3964ee0c1ea6a9b5ec68fa309687.tar.bz2 podman-e6074eb9acbd3964ee0c1ea6a9b5ec68fa309687.zip |
Implement new subcommands
* Refactor create subparser to share arguments with run subparser
* Add argparse.*Action subclasses to reduce duplicate code in parsers
* Using BooleanAction now accept True/False value as expected
* .pylintrc added to loosen variable name policing
* Update AbstractBaseAction to remove unset arguments before
transmitting to podman service
* Align logging messages to podman output
* Renamed global argument from --user to --username, to avoid conflict
with create/run podman commands
* Add new subcommands: run, create, history, import, info, push,
restart and search
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Closes: #1519
Approved by: rhatdan
Diffstat (limited to 'contrib/python/pypodman/Makefile')
-rw-r--r-- | contrib/python/pypodman/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/python/pypodman/Makefile b/contrib/python/pypodman/Makefile index fb25776fa..8c9691996 100644 --- a/contrib/python/pypodman/Makefile +++ b/contrib/python/pypodman/Makefile @@ -1,5 +1,6 @@ PYTHON ?= /usr/bin/python3 DESTDIR := / +PODMAN_VERSION ?= '0.0.4' .PHONY: python-pypodman python-pypodman: @@ -17,6 +18,11 @@ integration: install: $(PYTHON) setup.py install --root ${DESTDIR} +.PHONY: upload +upload: + $(PODMAN_VERSION) $(PYTHON) setup.py sdist bdist_wheel + twine upload --repository-url https://test.pypi.org/legacy/ dist/* + .PHONY: clobber clobber: uninstall clean |