summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Hellmann <doug.hellmann@dreamhost.com>2013-12-20 22:25:26 +0000
committerDoug Hellmann <doug.hellmann@dreamhost.com>2013-12-20 22:49:02 +0000
commit79a8791e7fefdcbe62f264bf905ac09a1958e753 (patch)
tree6a18d0479d630ea4de787436ad5a48e42a51c890
parent1de907686ff4dfdaf0d6e93dcbfe1fda952f6d7a (diff)
downloadcliff-79a8791e7fefdcbe62f264bf905ac09a1958e753.tar.gz
Move to stackforge
Update links in documentation, add a contributing file, and update the tox configuration file. Change-Id: I42b5a652501160978c7896b8eabfb46061cd80ed
-rw-r--r--.gitreview4
-rw-r--r--CONTRIBUTING.rst10
-rw-r--r--README.rst2
-rw-r--r--docs/source/developers.rst24
-rw-r--r--setup.py3
-rw-r--r--tox.ini4
6 files changed, 32 insertions, 15 deletions
diff --git a/.gitreview b/.gitreview
new file mode 100644
index 0000000..212f062
--- /dev/null
+++ b/.gitreview
@@ -0,0 +1,4 @@
+[gerrit]
+host=review.openstack.org
+port=29418
+project=stackforge/cliff.git
diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst
new file mode 100644
index 0000000..3ba612b
--- /dev/null
+++ b/CONTRIBUTING.rst
@@ -0,0 +1,10 @@
+Changes to cliff should be submitted for review via the Gerrit tool,
+following the workflow documented at:
+
+ http://wiki.openstack.org/GerritWorkflow
+
+Pull requests submitted through GitHub will be ignored.
+
+Bugs should be filed on Launchpad, not GitHub:
+
+ https://bugs.launchpad.net/python-cliff
diff --git a/README.rst b/README.rst
index d7f9583..567a259 100644
--- a/README.rst
+++ b/README.rst
@@ -2,8 +2,6 @@
cliff -- Command Line Interface Formulation Framework
=======================================================
-.. image:: https://secure.travis-ci.org/dhellmann/cliff.png?branch=master
-
cliff is a framework for building command line programs. It uses
setuptools entry points to provide subcommands, output formatters, and
other extensions.
diff --git a/docs/source/developers.rst b/docs/source/developers.rst
index 46b9808..ad02ee4 100644
--- a/docs/source/developers.rst
+++ b/docs/source/developers.rst
@@ -3,11 +3,19 @@
================
If you would like to contribute to cliff directly, these instructions
-should help you get started. Patches, bug reports, and feature
-requests are all welcome through the `GitHub project
-<https://github.com/dreamhost/cliff>`_. Contributions in the form of
-patches or pull requests are easier to integrate and will receive
-priority attention.
+should help you get started. Bug reports, and feature requests are
+all welcome through the `Launchpad project`_.
+
+.. _Launchpad project: https://launchpad.net/python-cliff
+
+Changes to cliff should be submitted for review via the Gerrit tool,
+following the workflow documented at
+http://wiki.openstack.org/GerritWorkflow
+
+Pull requests submitted through GitHub will be ignored.
+
+Bugs should be filed under the `Launchpad project`_.
+
.. note::
@@ -56,13 +64,11 @@ The output version of the documentation ends up in
Running Tests
=============
-.. image:: https://secure.travis-ci.org/dhellmann/cliff.png?branch=master
-
The test suite for clif uses tox_, which must be installed separately
(``pip install tox``).
-To run the tests under Python 2.7 and 3.2, run ``tox`` from the top
-level directory of the git repository.
+To run the tests under Python 2.7 and 3.3 as well as PyPy, run ``tox``
+from the top level directory of the git repository.
To run tests under a single version of Python, specify the appropriate
environment when running tox::
diff --git a/setup.py b/setup.py
index 205d5ca..7a16b08 100644
--- a/setup.py
+++ b/setup.py
@@ -132,8 +132,7 @@ setup(
author='Doug Hellmann',
author_email='doug.hellmann@gmail.com',
- url='https://github.com/dreamhost/cliff',
- download_url='https://github.com/dreamhost/cliff/tarball/master',
+ url='https://launchpad.net/python-cliff',
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
diff --git a/tox.ini b/tox.ini
index 3c07077..bf5163c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py26,py27,py32,py33,pypy,style
+envlist = py26,py27,py32,py33,pypy,pep8
[testenv]
distribute = False
@@ -9,7 +9,7 @@ deps =
mock
coverage
-[testenv:style]
+[testenv:pep8]
deps = flake8
commands = flake8 cliff docs/source/conf.py setup.py