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

Commit 0e73bdb

Browse files
authored
Merge pull request #37 from 4383/fix-md
Fix pypi deployment by using documentation at markdown format
2 parents 973b545 + d00fe04 commit 0e73bdb

File tree

4 files changed

+56
-11
lines changed

4 files changed

+56
-11
lines changed

.travis.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,18 @@ before_install:
1010
- pip install -U pip
1111
- pip install -U setuptools
1212
- pip install -U wheel
13+
- pip install -U twine
1314
install:
1415
- pip install tox-travis .[devel]
1516
script:
16-
- echo "test"
17+
- pip install -U setuptools
18+
- pip install -U wheel
19+
- pip install -U twine
20+
- pip list
21+
- rm -rf dist
22+
- python setup.py sdist
23+
- python setup.py bdist_wheel
24+
- twine check dist/*
1725
deploy:
1826
- provider: pypi
1927
user: containers-libpod

AUTHORS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Anders F Björklund <[email protected]>
2+
Brent Baude <[email protected]>
3+
Daniel J Walsh <[email protected]>
4+
Dhanisha Phadate <[email protected]>
5+
Hervé Beraud <[email protected]>
6+
Jhon Honce <[email protected]>
7+
Jhon Honce <[email protected]>

ChangeLog

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
CHANGES
2+
=======
3+
4+
* Fix pypi deployment by using documentation at markdown format
5+
6+
v0.0.2
7+
------
8+
9+
* Fix up pushing to pypi
10+
11+
v0.0.1
12+
------
13+
14+
* Pull image function throws KeyError for id
15+
* Secure Travis
16+
* Introduce travis-ci and autodeployments on tags
17+
* Improve packaging by using PBR
18+
* Add base requirements to README.md
19+
* Remove pypodman to python-pypodman repo
20+
* Update module to align with varlink API changes
21+
* Use GetVersion instead of Ping, as recommended
22+
* Improve README
23+
* pypodman: add options to handle ssh host keys
24+
* Update README.md
25+
* add missing bits
26+
* Initial copy from containers/libpod
27+
* Initial commit

setup.cfg

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,28 @@
11
[metadata]
22
name = podman
33
home-page = https://github.com/containers/python-podman
4-
project_urls =
5-
Bug Tracker = https://github.com/containers/python-podman/issues
6-
Source Code = https://github.com/containers/python-podman
74
summary = A library to interact with a Podman server
8-
description_file = README.md
9-
description_content_type = text/markdown
5+
description-file =
6+
README.md
7+
ChangeLog
8+
AUTHORS
109
author = Jhon Honce
10+
long_description_content_type = text/markdown
1111
author_email = [email protected]
1212
license = Apache Software License
13+
project_urls =
14+
Bug Tracker = https://github.com/containers/python-podman/issues
15+
Source Code = https://github.com/containers/python-podman
1316
classifier =
1417
Development Status :: 3 - Alpha
1518
Intended Audience :: Developers
1619
License :: OSI Approved :: Apache Software License
1720
Programming Language :: Python :: 3.4
1821
Topic :: Software Development
19-
keywords =
20-
varlink
21-
libpod
22-
podman
22+
keywords = varlink, libpod, podman
23+
requires-dist =
24+
setuptools
25+
wheel
2326

2427
[files]
2528
packages =
@@ -32,5 +35,5 @@ devel=
3235
tox
3336
bandit
3437

35-
[wheel]
38+
[bdist_wheel]
3639
universal = 1

0 commit comments

Comments
 (0)