Skip to content

Commit c9ea3af

Browse files
author
Thomas Grainger
committed
add readme to PyPI with changelog
1 parent e3605a6 commit c9ea3af

File tree

5 files changed

+28
-10
lines changed

5 files changed

+28
-10
lines changed

CHANGES.rst

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
0.5.0 (unreleased)
2+
------------------
3+
4+
- First version of docker-registry-client with changelog

MANIFEST.in

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
include CHANGES.rst
2+
include README.rst
3+
4+
recursive-exclude * __pycache__
5+
recursive-exclude * *.py[co]

README.md

-9
This file was deleted.

README.rst

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Docker Registry Client
2+
======================
3+
4+
|Build Status|
5+
6+
*Description*
7+
8+
A Python REST client for the Docker Registry
9+
10+
It's useful for automating image tagging and untagging
11+
12+
.. |Build Status| image:: https://travis-ci.org/yodle/docker-registry-client.svg?branch=master
13+
:target: https://travis-ci.org/yodle/docker-registry-client

setup.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
from setuptools import setup, find_packages
22

3+
readme = open('README.rst').read()
4+
history = open('CHANGES.rst').read().replace('.. :changelog:', '')
5+
36
setup(
47
name="docker-registry-client",
58
version="0.4.0",
6-
description='Client for Docker Registry V1',
9+
description='Client for Docker Registry V1 and V2',
10+
long_description=readme + '\n\n' + history,
711
author='John Downs',
812
author_email='[email protected]',
13+
url='https://github.com/yodl/docker-registry-client',
914
license="Apache License 2.0",
1015
classifiers=[
1116
'Development Status :: 3 - Alpha',

0 commit comments

Comments
 (0)