Skip to content
This repository was archived by the owner on Sep 12, 2018. It is now read-only.

Commit 5f64099

Browse files
author
Olivier Gambier
committed
Cleanup
- moving metadata into __init__ with the rest - removed useless and other cosmetics in tox.ini - added pypy Docker-DCO-1.1-Signed-off-by: Olivier Gambier <[email protected]> (github: dmp42)
1 parent 895bc3e commit 5f64099

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

depends/docker-registry-core/docker_registry/core/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@
4747
__title__ = 'docker-registry-core'
4848
__build__ = 0x000000
4949

50+
__url__ = 'https://github.com/docker/docker-registry'
51+
__description__ = 'Docker registry core package'
52+
__download__ = 'https://github.com/docker/docker-registry/archive/master.zip'
53+
5054
try:
5155
NullHandler = logging.NullHandler
5256
except AttributeError:

depends/docker-registry-core/tox.ini

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
1-
# py34:
2-
# boto is not ready
31
[tox]
4-
envlist = flake8, py26, py27, py34
5-
# skipsdist = True
2+
envlist = flake8, py26, py27, py34, pypy
63

74
[flake8]
85
exclude = .tox,.git,*.egg,build
9-
ignore = H304
6+
ignore = H304
107

118
[testenv]
12-
deps = -rrequirements/main.txt
13-
-rrequirements/test.txt
9+
deps = -rrequirements/test.txt
1410
commands = python setup.py nosetests
1511

1612
[testenv:flake8]

0 commit comments

Comments
 (0)