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

Commit e59fce6

Browse files
committed
fixing package name to use a - instead of _, and improving a doc block.
1 parent bf3360a commit e59fce6

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

docker_registry/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@
3636

3737
def run_gunicorn():
3838
"""
39-
Exec gunicorn with our wsgi app, taking settings from environment
40-
variables as listed in the help text. This is intended to be called as a
41-
console_script entry point.
39+
Exec gunicorn with our wsgi app.
40+
41+
Settings are taken from environment variables as listed in the help text.
42+
This is intended to be called as a console_script entry point.
4243
"""
4344

4445
# this only exists to provide help/usage text

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
requirements = open(req_path).read()
1313

1414
setuptools.setup(
15-
name='docker_registry',
15+
name='docker-registry',
1616
# TODO: Load the version programatically, which is currently available in
1717
# docker_registry.app. This is not possible yet because importing
1818
# causes config files to be loaded

0 commit comments

Comments
 (0)