From 018673863ae797e612805f5cc0cdbbd6c2944113 Mon Sep 17 00:00:00 2001 From: "Nikita P. Shupeyko" Date: Tue, 27 Jun 2017 14:21:57 +0300 Subject: [PATCH] Fix GitHub project name in docs --- .github/ISSUE_TEMPLATE.md | 2 +- CONTRIBUTING.rst | 4 ++-- README.rst | 4 ++-- docs/developing-locally.rst | 4 ++-- docs/installation.rst | 10 +++++----- setup.py | 4 ++-- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index a33f455..22efcb3 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -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 diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 89c12fc..dbe99b0 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -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 @@ -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: diff --git a/README.rst b/README.rst index 16ed5ca..068d91f 100644 --- a/README.rst +++ b/README.rst @@ -64,7 +64,7 @@ Installation .. code-block:: console - $ pip install python_humble_utils + $ pip install python-humble-utils or install from sources: @@ -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 ) diff --git a/docs/developing-locally.rst b/docs/developing-locally.rst index 2e870b6..e04ecae 100644 --- a/docs/developing-locally.rst +++ b/docs/developing-locally.rst @@ -13,7 +13,7 @@ Environment Setup #. Clone your fork locally:: - $ git clone git@github.com:/python_humble_utils.git + $ git clone git@github.com:/python-humble-utils.git #. Create a `virtualenv`_; assuming you have `virtualenvwrapper`_ installed, this is how you do it:: @@ -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/ diff --git a/docs/installation.rst b/docs/installation.rst index 8349e86..72177d4 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -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. @@ -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: @@ -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 diff --git a/setup.py b/setup.py index 8f3e188..978f7a4 100644 --- a/setup.py +++ b/setup.py @@ -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,