File tree 5 files changed +28
-10
lines changed
5 files changed +28
-10
lines changed Original file line number Diff line number Diff line change
1
+ 0.5.0 (unreleased)
2
+ ------------------
3
+
4
+ - First version of docker-registry-client with changelog
Original file line number Diff line number Diff line change
1
+ include CHANGES.rst
2
+ include README.rst
3
+
4
+ recursive-exclude * __pycache__
5
+ recursive-exclude * *.py[co]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
+ readme = open ('README.rst' ).read ()
4
+ history = open ('CHANGES.rst' ).read ().replace ('.. :changelog:' , '' )
5
+
3
6
setup (
4
7
name = "docker-registry-client" ,
5
8
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 ,
7
11
author = 'John Downs' ,
8
12
13
+ url = 'https://github.com/yodl/docker-registry-client' ,
9
14
license = "Apache License 2.0" ,
10
15
classifiers = [
11
16
'Development Status :: 3 - Alpha' ,
You can’t perform that action at this time.
0 commit comments