Skip to content

Commit

Permalink
Fix GitHub project name in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
webyneter committed Jun 27, 2017
1 parent b2ad470 commit 0186738
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[//]: # (Inspired by https://gitlab.com/gitlab-org/gitlab-ce/blob/9e1d8542533bf09623d790413ff2872921efda7e/.gitlab/issue_templates/Bug.md)

> *To avoid issue duplication, make sure to [lookup the same or similar one labelled with `bug`](https://github.com/webyneter/python_humble_utils/issues?q=label%3bug).
> *To avoid issue duplication, make sure to [lookup the same or similar one labelled with `bug`](https://github.com/webyneter/python-humble-utils/issues?q=label%3bug).
Please, remove this notice if you are confident the issue is original.*

### Summary
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Report Bugs

`Create an issue`_ corresponding to the bug you have found complying with the project's issue template.

.. _`Create an issue`: https://github.com/webyneter/python_humble_utils/issues
.. _`Create an issue`: https://github.com/webyneter/python-humble-utils/issues


Fix Bugs
Expand Down Expand Up @@ -48,7 +48,7 @@ official docs, in docstrings, or even on the web in blog posts, articles, and su
Submit Feedback
~~~~~~~~~~~~~~~

The best way to send feedback is to file an issue at https://github.com/webyneter/python_humble_utils/issues.
The best way to send feedback is to file an issue at https://github.com/webyneter/python-humble-utils/issues.

If you are proposing a feature:

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Installation

.. code-block:: console
$ pip install python_humble_utils
$ pip install python-humble-utils
or install from sources:

Expand All @@ -84,7 +84,7 @@ Usage
import os
from python_humble_utils.commands import (
from python_humble_utils.commands import (
yield_file_paths,
camel_or_pascal_case_to_snake_case
)
Expand Down
4 changes: 2 additions & 2 deletions docs/developing-locally.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Environment Setup

#. Clone your fork locally::

$ git clone [email protected]:<your username>/python_humble_utils.git
$ git clone [email protected]:<your username>/python-humble-utils.git

#. Create a `virtualenv`_; assuming you have `virtualenvwrapper`_ installed, this is how you do it::

Expand All @@ -26,7 +26,7 @@ Environment Setup
$ python setup.py develop


.. _`GitHub`: https://github.com/webyneter/python_humble_utils/
.. _`GitHub`: https://github.com/webyneter/python-humble-utils/
.. _`virtualenv`: https://virtualenv.pypa.io/en/stable/
.. _`virtualenvwrapper`: https://virtualenvwrapper.readthedocs.io/en/stable/

Expand Down
10 changes: 5 additions & 5 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ To install `python-humble-utils`, run this command in your terminal:

.. code-block:: console
$ pip install python_humble_utils
$ pip install python-humble-utils
This is the preferred method, as it will always install the most recent stable release.

Expand All @@ -33,13 +33,13 @@ You can either clone the public repository:

.. code-block:: console
$ git clone git://github.com/webyneter/python_humble_utils
$ git clone git://github.com/webyneter/python-humble-utils
Or download the `tarball`_:

.. code-block:: console
$ curl -OL https://github.com/webyneter/python_humble_utils/tarball/master
$ curl -OL https://github.com/webyneter/python-humble-utils/tarball/master
Once you have a copy of the source, you can install it with:

Expand All @@ -48,5 +48,5 @@ Once you have a copy of the source, you can install it with:
$ python setup.py install
.. _Github repo: https://github.com/webyneter/python_humble_utils
.. _tarball: https://github.com/webyneter/python_humble_utils/tarball/master
.. _Github repo: https://github.com/webyneter/python-humble-utils
.. _tarball: https://github.com/webyneter/python-humble-utils/tarball/master
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@


setup(
name='python_humble_utils',
name='python-humble-utils',
version='0.1.0',
url='https://github.com/webyneter/python_humble_utils',
url='https://github.com/webyneter/python-humble-utils',

description="Python utils for everyday use.",
long_description=readme + '\n\n' + history,
Expand Down

0 comments on commit 0186738

Please sign in to comment.