Skip to content

Commit

Permalink
Fix the README style so that pypi recognize it as restructured text.
Browse files Browse the repository at this point in the history
  • Loading branch information
tamentis committed Oct 16, 2014
1 parent 5952082 commit 0957415
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES.txt
@@ -1,3 +1,8 @@
0.1.6 (YYYY-MM-DD)
==================

-

0.1.5 (2014-10-16)
==================

Expand Down
4 changes: 2 additions & 2 deletions README.rst
@@ -1,5 +1,5 @@
rpdb - remote debugger based on pdb
==================================
===================================

rpbm is a wrapper around pdb that re-routes stdin and stdout to a socket
handler. By default it opens the debugger on port 4444::
Expand Down Expand Up @@ -27,7 +27,7 @@ Installation in CPython (standard Python)
pip install rpdb

For a quick, ad hoc alternative, you can copy the entire rpdb subdirectory
(the directory directly containing the __init.py file) to somewhere on your
(the directory directly containing the __init__.py file) to somewhere on your
$PYTHONPATH.

Installation in a Tomcat webapp
Expand Down
2 changes: 1 addition & 1 deletion rpdb/__init__.py
@@ -1,7 +1,7 @@
"""Remote Python Debugger (pdb wrapper)."""

__author__ = "Bertrand Janin <b@janin.com>"
__version__ = "0.1.5"
__version__ = "0.1.6"

import pdb
import socket
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -3,6 +3,7 @@
import os
from distutils.core import setup


here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
Expand All @@ -12,7 +13,7 @@

setup(
name="rpdb",
version="0.1.5",
version="0.1.6",
description="pdb wrapper with remote access via tcp socket",
long_description=README + "\n\n" + CHANGES,
author="Bertrand Janin",
Expand Down

0 comments on commit 0957415

Please sign in to comment.