# HG changeset patch # User Marcin Kasperski # Date 2020-06-14 17:47:50 # Node ID 21425e89badb028adceaf93aee81dff518e6b7d4 # Parent 6a44fcd7243bae3edbd8b99c72ce9a215d5fa6a1 Renaming README, so heptapod recognizes it diff --git a/.bitbucket.url b/.bitbucket.url deleted file mode 100644 --- a/.bitbucket.url +++ /dev/null @@ -1,1 +0,0 @@ -https://Mekk@bitbucket.org/Mekk/mercurial_keyring/ diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -1,4 +1,4 @@ --syntax: regexp +syntax: regexp \.pyc$ \.pyo$ @@ -9,4 +9,8 @@ ^build/ ^dist/ ^mercurial_keyring\.egg-info/ -^README\.html \ No newline at end of file +^README\.html + +syntax: glob + +.idea \ No newline at end of file diff --git a/HISTORY.txt b/HISTORY.rst rename from HISTORY.txt rename to HISTORY.rst diff --git a/README-devel.txt b/README-devel.rst rename from README-devel.txt rename to README-devel.rst --- a/README-devel.txt +++ b/README-devel.rst @@ -1,10 +1,15 @@ -To test in devel virtual environment: +Running development version +================================ - pip install Mercurial==… +To examine in development virtual environment: + + pip install Mercurial==«X-Y-Z» + pip install dbus-python pip install keyring - pip install dbus-python -(then install meu and keyring, and possibly other necessary extensions) +then install ``mercurial_extension_utils`` and ``mercurial_keyring`` (possibly by +``pip --edit``). -dbus-python makes some Linux backends available. +Note that ``dbus-python`` is not enforced by dependencies but it's presence makes +various Linux backends available. diff --git a/README.txt b/README.rst rename from README.txt rename to README.rst --- a/README.txt +++ b/README.rst @@ -1,4 +1,4 @@ -.. -*- mode: rst; compile-command: "rst2html README.txt README.html" -*- +.. -*- mode: rst; compile-command: "rst2html README.rst README.html" -*- ======================================================= Mercurial Keyring @@ -396,7 +396,7 @@ keyring`` and looking for binary package History ======================================================= -See `HISTORY.txt`_. +See `HISTORY.rst`_. Development ======================================================= @@ -415,7 +415,7 @@ Check also `other Mercurial extensions I .. _other Mercurial extensions I wrote: http://mekk.bitbucket.io/mercurial.html -.. _HISTORY.txt: http://bitbucket.org/Mekk/mercurial_keyring/src/tip/HISTORY.txt +.. _HISTORY.rst: http://bitbucket.org/Mekk/mercurial_keyring/src/tip/HISTORY.rst .. _TortoiseHg: http://tortoisehg.bitbucket.org/ .. _Mercurial: http://mercurial.selenic.com .. _mercurial_extension_utils: https://bitbucket.org/Mekk/mercurial-extension_utils/ diff --git a/mercurial_keyring.py b/mercurial_keyring.py --- a/mercurial_keyring.py +++ b/mercurial_keyring.py @@ -27,7 +27,7 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -# See README.txt for more details. +# See README.rst for more details. '''securely save HTTP and SMTP passwords to encrypted storage diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup VERSION = '1.3.0' -LONG_DESCRIPTION = open("README.txt").read() +LONG_DESCRIPTION = open("README.rst").read() setup( name="mercurial_keyring",