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

Fix pypi deployment by using documentation at markdown format #37

Merged
merged 1 commit into from
Jul 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
10 changes: 9 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,18 @@ before_install:
- pip install -U pip
- pip install -U setuptools
- pip install -U wheel
- pip install -U twine
install:
- pip install tox-travis .[devel]
script:
- echo "test"
- pip install -U setuptools
- pip install -U wheel
- pip install -U twine
- pip list
- rm -rf dist
- python setup.py sdist
- python setup.py bdist_wheel
- twine check dist/*
deploy:
- provider: pypi
user: containers-libpod
Expand Down
7 changes: 7 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Anders F Björklund <[email protected]>
Brent Baude <[email protected]>
Daniel J Walsh <[email protected]>
Dhanisha Phadate <[email protected]>
Hervé Beraud <[email protected]>
Jhon Honce <[email protected]>
Jhon Honce <[email protected]>
27 changes: 27 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
CHANGES
=======

* Fix pypi deployment by using documentation at markdown format

v0.0.2
------

* Fix up pushing to pypi

v0.0.1
------

* Pull image function throws KeyError for id
* Secure Travis
* Introduce travis-ci and autodeployments on tags
* Improve packaging by using PBR
* Add base requirements to README.md
* Remove pypodman to python-pypodman repo
* Update module to align with varlink API changes
* Use GetVersion instead of Ping, as recommended
* Improve README
* pypodman: add options to handle ssh host keys
* Update README.md
* add missing bits
* Initial copy from containers/libpod
* Initial commit
23 changes: 13 additions & 10 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,25 +1,28 @@
[metadata]
name = podman
home-page = https://github.com/containers/python-podman
project_urls =
Bug Tracker = https://github.com/containers/python-podman/issues
Source Code = https://github.com/containers/python-podman
summary = A library to interact with a Podman server
description_file = README.md
description_content_type = text/markdown
description-file =
README.md
ChangeLog
AUTHORS
author = Jhon Honce
long_description_content_type = text/markdown
author_email = [email protected]
license = Apache Software License
project_urls =
Bug Tracker = https://github.com/containers/python-podman/issues
Source Code = https://github.com/containers/python-podman
classifier =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.4
Topic :: Software Development
keywords =
varlink
libpod
podman
keywords = varlink, libpod, podman
requires-dist =
setuptools
wheel

[files]
packages =
Expand All @@ -32,5 +35,5 @@ devel=
tox
bandit

[wheel]
[bdist_wheel]
universal = 1