fix repository paths
Markus Gerstel
5 years ago
14 | 14 |
Report Bugs
|
15 | 15 |
~~~~~~~~~~~
|
16 | 16 |
|
17 | |
Report bugs at https://github.com/DiamondLightSource/procrunner/issues.
|
|
17 |
Report bugs at https://github.com/DiamondLightSource/python-procrunner/issues.
|
18 | 18 |
|
19 | 19 |
If you are reporting a bug, please include:
|
20 | 20 |
|
|
44 | 44 |
Submit Feedback
|
45 | 45 |
~~~~~~~~~~~~~~~
|
46 | 46 |
|
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.
|
48 | 48 |
|
49 | 49 |
If you are proposing a feature:
|
50 | 50 |
|
|
61 | 61 |
1. Fork the `procrunner` repo on GitHub.
|
62 | 62 |
2. Clone your fork locally::
|
63 | 63 |
|
64 | |
$ git clone git@github.com:your_name_here/procrunner.git
|
|
64 |
$ git clone git@github.com:your_name_here/python-procrunner.git
|
65 | 65 |
|
66 | 66 |
3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development::
|
67 | 67 |
|
|
102 | 102 |
your new functionality into a function with a docstring, and add the
|
103 | 103 |
feature to the list in README.rst.
|
104 | 104 |
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
|
106 | 106 |
and make sure that the tests pass for all supported Python versions.
|
107 | 107 |
|
108 | 108 |
Tips
|
5 | 5 |
.. image:: https://img.shields.io/pypi/v/procrunner.svg
|
6 | 6 |
:target: https://pypi.python.org/pypi/procrunner
|
7 | 7 |
|
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
|
10 | 10 |
|
11 | 11 |
.. image:: https://readthedocs.org/projects/procrunner/badge/?version=latest
|
12 | 12 |
:target: https://procrunner.readthedocs.io/en/latest/?badge=latest
|
13 | 13 |
:alt: Documentation Status
|
14 | 14 |
|
15 | 15 |
|
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/
|
18 | 18 |
:alt: Updates
|
19 | 19 |
|
20 | 20 |
|
31 | 31 |
|
32 | 32 |
.. code-block:: console
|
33 | 33 |
|
34 | |
$ git clone git://github.com/DiamondLightSource/procrunner
|
|
34 |
$ git clone git://github.com/DiamondLightSource/python-procrunner
|
35 | 35 |
|
36 | 36 |
Or download the `tarball`_:
|
37 | 37 |
|
38 | 38 |
.. code-block:: console
|
39 | 39 |
|
40 | |
$ curl -OL https://github.com/DiamondLightSource/procrunner/tarball/master
|
|
40 |
$ curl -OL https://github.com/DiamondLightSource/python-procrunner/tarball/master
|
41 | 41 |
|
42 | 42 |
Once you have a copy of the source, you can install it with:
|
43 | 43 |
|
|
46 | 46 |
$ python setup.py install
|
47 | 47 |
|
48 | 48 |
|
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
|
42 | 42 |
setup_requires=setup_requirements,
|
43 | 43 |
test_suite='tests',
|
44 | 44 |
tests_require=test_requirements,
|
45 | |
url='https://github.com/DiamondLightSource/procrunner',
|
|
45 |
url='https://github.com/DiamondLightSource/python-procrunner',
|
46 | 46 |
version='0.1.0',
|
47 | 47 |
zip_safe=False,
|
48 | 48 |
)
|