Skip to content

Commit

Permalink
Convert CONTRIBUTING and README to rst.
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed Nov 18, 2018
1 parent 8706eed commit 7da7187
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
3 changes: 2 additions & 1 deletion CONTRIBUTING.md → CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ Running the tests
To run the testsuite, you should be able to simply run "make check". This
will run the tests using unittest.

$ make check
::
$ make check

Tox configuration is also present as well as a Travis configuration file.

Expand Down
24 changes: 12 additions & 12 deletions README.md → README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This is the Dulwich project.
It aims to provide an interface to git repos (both local and remote) that
doesn't call out to git directly but instead uses pure Python.

**Main website**: [www.dulwich.io](https://www.dulwich.io/)
**Main website**: <https://www.dulwich.io/>

**License**: Apache License, version 2 or GNU General Public License, version 2 or later.

Expand All @@ -29,7 +29,7 @@ or if you are installing from pip::
$ pip install dulwich --global-option="--pure"

Note that you can also specify --global-option in a
[requirements.txt](https://pip.pypa.io/en/stable/reference/pip_install/#requirement-specifiers)
`requirements.txt <https://pip.pypa.io/en/stable/reference/pip_install/#requirement-specifiers>`_
file, e.g. like this::

dulwich --global-option=--pure
Expand All @@ -40,7 +40,7 @@ Getting started
Dulwich comes with both a lower-level API and higher-level plumbing ("porcelain").

For example, to use the lower level API to access the commit message of the
last commit:
last commit::

>>> from dulwich.repo import Repo
>>> r = Repo('.')
Expand All @@ -52,7 +52,7 @@ last commit:
>>> c.message
'Add note about encoding.\n'

And to print it using porcelain:
And to print it using porcelain::

>>> from dulwich import porcelain
>>> porcelain.log('.', max_entries=1)
Expand All @@ -67,26 +67,26 @@ Further documentation
---------------------

The dulwich documentation can be found in docs/ and
[on the web](https://www.dulwich.io/docs/).
`on the web <https://www.dulwich.io/docs/>`_.

The API reference can be generated using pydoctor, by running "make pydoctor",
or [on the web](https://www.dulwich.io/apidocs).
or `on the web <https://www.dulwich.io/apidocs>`_.

Help
----

There is a *#dulwich* IRC channel on the [Freenode](https://www.freenode.net/), and
[dulwich-announce](https://groups.google.com/forum/#!forum/dulwich-announce)
and [dulwich-discuss](https://groups.google.com/forum/#!forum/dulwich-discuss)
There is a *#dulwich* IRC channel on the `Freenode <https://www.freenode.net/>`_, and
`dulwich-announce <https://groups.google.com/forum/#!forum/dulwich-announce>`_
and `dulwich-discuss <https://groups.google.com/forum/#!forum/dulwich-discuss>`_
mailing lists.

Contributing
------------

For a full list of contributors, see the git logs or [AUTHORS](AUTHORS).
For a full list of contributors, see the git logs or `AUTHORS <AUTHORS>`_.

If you'd like to contribute to Dulwich, see the [CONTRIBUTING](CONTRIBUTING.md)
file and [list of open issues](https://github.com/dulwich/dulwich/issues).
If you'd like to contribute to Dulwich, see the `CONTRIBUTING <CONTRIBUTING.rst>`_
file and `list of open issues <https://github.com/dulwich/dulwich/issues>`_.

Supported versions of Python
----------------------------
Expand Down

0 comments on commit 7da7187

Please sign in to comment.