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

Commit bde015f

Browse files
authored
Merge pull request #26 from jwhonce/wip/docs
Add base requirements to README.md
2 parents d0a45fe + 3a0bf31 commit bde015f

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ install:
2323
.PHONY: upload
2424
upload:
2525
PODMAN_VERSION=$(PODMAN_VERSION) $(PYTHON) setup.py sdist bdist_wheel
26+
twine upload --verbose dist/*
2627
twine upload --verbose --repository-url https://test.pypi.org/legacy/ dist/*
2728

2829
.PHONY: clobber

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ Provide a stable API to call into.
1212

1313
## Releases
1414

15+
### Requirements
16+
17+
* Python 3.5+
18+
* OpenSSH 6.7+
19+
* Python dependencies in requirements.txt
20+
21+
### Building
22+
1523
To build the podman egg and install as user:
1624

1725
```sh

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
author_email='[email protected]',
2323
license='Apache Software License',
2424
long_description=readme,
25+
long_description_content_type="text/markdown",
2526
include_package_data=True,
2627
install_requires=requirements,
2728
packages=find_packages(exclude=['test']),

0 commit comments

Comments
 (0)