Codebase list python-procrunner / 943c78d
fix repository paths Markus Gerstel 6 years ago
4 changed file(s) with 13 addition(s) and 13 deletion(s). Raw diff Collapse all Expand all
1414 Report Bugs
1515 ~~~~~~~~~~~
1616
17 Report bugs at https://github.com/DiamondLightSource/procrunner/issues.
17 Report bugs at https://github.com/DiamondLightSource/python-procrunner/issues.
1818
1919 If you are reporting a bug, please include:
2020
4444 Submit Feedback
4545 ~~~~~~~~~~~~~~~
4646
47 The best way to send feedback is to file an issue at https://github.com/DiamondLightSource/procrunner/issues.
47 The best way to send feedback is to file an issue at https://github.com/DiamondLightSource/python-procrunner/issues.
4848
4949 If you are proposing a feature:
5050
6161 1. Fork the `procrunner` repo on GitHub.
6262 2. Clone your fork locally::
6363
64 $ git clone git@github.com:your_name_here/procrunner.git
64 $ git clone git@github.com:your_name_here/python-procrunner.git
6565
6666 3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development::
6767
102102 your new functionality into a function with a docstring, and add the
103103 feature to the list in README.rst.
104104 3. The pull request should work for Python 2.7, 3.4, 3.5 and 3.6, and for PyPy. Check
105 https://travis-ci.org/DiamondLightSource/procrunner/pull_requests
105 https://travis-ci.org/DiamondLightSource/python-procrunner/pull_requests
106106 and make sure that the tests pass for all supported Python versions.
107107
108108 Tips
55 .. image:: https://img.shields.io/pypi/v/procrunner.svg
66 :target: https://pypi.python.org/pypi/procrunner
77
8 .. image:: https://img.shields.io/travis/DiamondLightSource/procrunner.svg
9 :target: https://travis-ci.org/DiamondLightSource/procrunner
8 .. image:: https://img.shields.io/travis/DiamondLightSource/python-procrunner.svg
9 :target: https://travis-ci.org/DiamondLightSource/python-procrunner
1010
1111 .. image:: https://readthedocs.org/projects/procrunner/badge/?version=latest
1212 :target: https://procrunner.readthedocs.io/en/latest/?badge=latest
1313 :alt: Documentation Status
1414
1515
16 .. image:: https://pyup.io/repos/github/DiamondLightSource/procrunner/shield.svg
17 :target: https://pyup.io/repos/github/DiamondLightSource/procrunner/
16 .. image:: https://pyup.io/repos/github/DiamondLightSource/python-procrunner/shield.svg
17 :target: https://pyup.io/repos/github/DiamondLightSource/python-procrunner/
1818 :alt: Updates
1919
2020
3131
3232 .. code-block:: console
3333
34 $ git clone git://github.com/DiamondLightSource/procrunner
34 $ git clone git://github.com/DiamondLightSource/python-procrunner
3535
3636 Or download the `tarball`_:
3737
3838 .. code-block:: console
3939
40 $ curl -OL https://github.com/DiamondLightSource/procrunner/tarball/master
40 $ curl -OL https://github.com/DiamondLightSource/python-procrunner/tarball/master
4141
4242 Once you have a copy of the source, you can install it with:
4343
4646 $ python setup.py install
4747
4848
49 .. _Github repo: https://github.com/DiamondLightSource/procrunner
50 .. _tarball: https://github.com/DiamondLightSource/procrunner/tarball/master
49 .. _Github repo: https://github.com/DiamondLightSource/python-procrunner
50 .. _tarball: https://github.com/DiamondLightSource/python-procrunner/tarball/master
4242 setup_requires=setup_requirements,
4343 test_suite='tests',
4444 tests_require=test_requirements,
45 url='https://github.com/DiamondLightSource/procrunner',
45 url='https://github.com/DiamondLightSource/python-procrunner',
4646 version='0.1.0',
4747 zip_safe=False,
4848 )