Move to stackforge

Update links in documentation, add a contributing file, and update the
tox configuration file.

Change-Id: I42b5a652501160978c7896b8eabfb46061cd80ed
This commit is contained in:
Doug Hellmann 2013-12-20 22:25:26 +00:00
parent 1de907686f
commit 79a8791e7f
6 changed files with 32 additions and 15 deletions

4
.gitreview Normal file
View File

@ -0,0 +1,4 @@
[gerrit]
host=review.openstack.org
port=29418
project=stackforge/cliff.git

10
CONTRIBUTING.rst Normal file
View File

@ -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

View File

@ -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.

View File

@ -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::

View File

@ -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',

View File

@ -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