Skip to content
This repository was archived by the owner on Feb 10, 2021. It is now read-only.

Add base requirements to README.md #26

Merged
merged 1 commit into from
Jun 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ install:
.PHONY: upload
upload:
PODMAN_VERSION=$(PODMAN_VERSION) $(PYTHON) setup.py sdist bdist_wheel
twine upload --verbose dist/*
twine upload --verbose --repository-url https://test.pypi.org/legacy/ dist/*

.PHONY: clobber
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ Provide a stable API to call into.

## Releases

### Requirements

* Python 3.5+
* OpenSSH 6.7+
* Python dependencies in requirements.txt

### Building

To build the podman egg and install as user:

```sh
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
author_email='[email protected]',
license='Apache Software License',
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
install_requires=requirements,
packages=find_packages(exclude=['test']),
Expand Down