diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 9d03747..cb53bbd 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -15,7 +15,7 @@ Report Bugs ~~~~~~~~~~~ -Report bugs at https://github.com/DiamondLightSource/procrunner/issues. +Report bugs at https://github.com/DiamondLightSource/python-procrunner/issues. If you are reporting a bug, please include: @@ -45,7 +45,7 @@ Submit Feedback ~~~~~~~~~~~~~~~ -The best way to send feedback is to file an issue at https://github.com/DiamondLightSource/procrunner/issues. +The best way to send feedback is to file an issue at https://github.com/DiamondLightSource/python-procrunner/issues. If you are proposing a feature: @@ -62,7 +62,7 @@ 1. Fork the `procrunner` repo on GitHub. 2. Clone your fork locally:: - $ git clone git@github.com:your_name_here/procrunner.git + $ git clone git@github.com:your_name_here/python-procrunner.git 3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development:: @@ -103,7 +103,7 @@ your new functionality into a function with a docstring, and add the feature to the list in README.rst. 3. The pull request should work for Python 2.7, 3.4, 3.5 and 3.6, and for PyPy. Check - https://travis-ci.org/DiamondLightSource/procrunner/pull_requests + https://travis-ci.org/DiamondLightSource/python-procrunner/pull_requests and make sure that the tests pass for all supported Python versions. Tips diff --git a/README.rst b/README.rst index 9300ffb..66b34de 100644 --- a/README.rst +++ b/README.rst @@ -6,16 +6,16 @@ .. image:: https://img.shields.io/pypi/v/procrunner.svg :target: https://pypi.python.org/pypi/procrunner -.. image:: https://img.shields.io/travis/DiamondLightSource/procrunner.svg - :target: https://travis-ci.org/DiamondLightSource/procrunner +.. image:: https://img.shields.io/travis/DiamondLightSource/python-procrunner.svg + :target: https://travis-ci.org/DiamondLightSource/python-procrunner .. image:: https://readthedocs.org/projects/procrunner/badge/?version=latest :target: https://procrunner.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status -.. image:: https://pyup.io/repos/github/DiamondLightSource/procrunner/shield.svg - :target: https://pyup.io/repos/github/DiamondLightSource/procrunner/ +.. image:: https://pyup.io/repos/github/DiamondLightSource/python-procrunner/shield.svg + :target: https://pyup.io/repos/github/DiamondLightSource/python-procrunner/ :alt: Updates diff --git a/docs/installation.rst b/docs/installation.rst index 80f0145..4f549bb 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -32,13 +32,13 @@ .. code-block:: console - $ git clone git://github.com/DiamondLightSource/procrunner + $ git clone git://github.com/DiamondLightSource/python-procrunner Or download the `tarball`_: .. code-block:: console - $ curl -OL https://github.com/DiamondLightSource/procrunner/tarball/master + $ curl -OL https://github.com/DiamondLightSource/python-procrunner/tarball/master Once you have a copy of the source, you can install it with: @@ -47,5 +47,5 @@ $ python setup.py install -.. _Github repo: https://github.com/DiamondLightSource/procrunner -.. _tarball: https://github.com/DiamondLightSource/procrunner/tarball/master +.. _Github repo: https://github.com/DiamondLightSource/python-procrunner +.. _tarball: https://github.com/DiamondLightSource/python-procrunner/tarball/master diff --git a/setup.py b/setup.py index b6ad4b7..4989602 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ setup_requires=setup_requirements, test_suite='tests', tests_require=test_requirements, - url='https://github.com/DiamondLightSource/procrunner', + url='https://github.com/DiamondLightSource/python-procrunner', version='0.1.0', zip_safe=False, )