1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Updated docs with new website location and a few other migration related things.

This commit is contained in:
Jannis Leidel 2011-03-06 18:19:41 +01:00
parent aede2cfcb7
commit 43c5f33877
6 changed files with 20 additions and 21 deletions

View file

@ -139,7 +139,7 @@ tell Hudson how it will build your job. The most important
steps are listed (assume Mercurial plugin is installed):
* Check "Mercurial" in Source Control Management section
* Fill in the repository URL with **http://bitbucket.org/ianb/pip**
* Fill in the repository URL with **https://github.com/pypa/pip**
* Mark "Build periodically" in *Build Triggers* section
* Add "0 0 \* \* \*" (without quotes) to tell hudson you want to
run your build everyday at midnight

View file

@ -40,7 +40,7 @@ master_doc = 'index'
# General information about the project.
project = 'pip'
copyright = '2010, Ian Bicking and contributors'
copyright = '2008-2011, The pip developers'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@ -188,7 +188,7 @@ htmlhelp_basename = 'pipdocs'
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'pip.tex', u'pip Documentation',
u'The Open Planning Project', 'manual'),
u'The pip developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of

View file

@ -12,24 +12,23 @@ bug reports, ideas, etc.
Contributing with Code
======================
Forking through Bitbucket
-------------------------
Forking through Github
----------------------
First of all, you need to fork the the official repository, which is
http://bitbucket.org/ianb/pip.
https://github.com/pypa/pip.
Log in to Bitbucket, go to `Ian Bicking's repository page
<http://bitbucket.org/ianb/pip>`_, follow the **fork** link, wait for Bitbucket
Log in to Github, go to the `pip repository page
<https://github.com/pypa/pip>`_, follow the **fork** link, wait for Github
to copy the repository and then clone your fork, like::
$ hg clone http://bitbucket.org/YOU_USER_NAME/pip
$ git clone https://github.com/YOU_USER_NAME/pip
Now you can change whatever you want, commit, push to your fork and when your
contribution is done, follow the **pull request** link and send us a request
explaining what you did and why.
All tests should pass
---------------------
@ -63,7 +62,7 @@ section.
Contributing with Bug Reports
=============================
Pip project is hosted at `Bitbucket`_ and uses its issue tracker system.
Pip project is hosted at `Github`_ and uses its issue tracker system.
If you have found a bug and want to report it, go to `pip issue tracker page`_,
click **Create new**, add a descriptive
@ -83,6 +82,6 @@ enhancement ideas and proposals via `pip issue tracker page`_,
.. _nose: http://somethingaboutorange.com/mrl/projects/nose/0.11.3/
.. _Bitbucket: http://bitbucket.org/
.. _pip issue tracker page: http://bitbucket.org/ianb/pip/issues
.. _Github: http://github.com/
.. _pip issue tracker page: https://github.com/pypa/pip/issues
.. _virtualenv mailing list: http://groups.google.com/group/python-virtualenv/

View file

@ -10,7 +10,7 @@ pip installs Python packages.
requirement-format
configuration
how-to-contribute
license
running-tests
.. comment: split here
@ -105,7 +105,7 @@ Community
The homepage for pip is temporarily located `on PyPI
<http://pypi.python.org/pypi/pip>`_ -- a more proper homepage will
follow. Bugs can go on the `pip issue tracker
<http://bitbucket.org/ianb/pip/issues/>`_. Discussion should happen on the
<https://github.com/pypa/pip/issues/>`_. Discussion should happen on the
`virtualenv email group
<http://groups.google.com/group/python-virtualenv?hl=en>`_.

View file

@ -27,7 +27,7 @@ tip
* Fixed issue #49 - Added ability to install version control requirements
without making them editable, e.g.::
pip install hg+http://bitbucket.org/ianb/pip/
pip install git+https://github.com/pypa/pip/
* Fixed issue #175 - Correctly locate build and source directory on Mac OS X.

View file

@ -7,9 +7,9 @@ version = "0.8.2"
doc_dir = os.path.join(os.path.dirname(__file__), 'docs')
index_filename = os.path.join(doc_dir, 'index.txt')
long_description = """\
The main website for pip is `pip.openplans.org
<http://pip.openplans.org>`_. You can also install
the `in-development version <http://bitbucket.org/ianb/pip/get/tip.gz#egg=pip-dev>`_
The main website for pip is `www.pip-installer.org
<http://www.pip-installer.org>`_. You can also install
the `in-development version <https://github.com/pypa/pip/tarball/master#egg=pip-dev>`_
of pip with ``easy_install pip==dev``.
"""
long_description = long_description + open(index_filename).read().split('split here', 1)[1]
@ -30,9 +30,9 @@ setup(name='pip',
'Programming Language :: Python :: 2.7',
],
keywords='easy_install distutils setuptools egg virtualenv',
author='Ian Bicking',
author='The pip developers',
author_email='python-virtualenv@groups.google.com',
url='http://pip.openplans.org',
url='http://www.pip-installer.org',
license='MIT',
packages=['pip', 'pip.commands', 'pip.vcs'],
entry_points=dict(console_scripts=['pip=pip:main', 'pip-%s=pip:main' % sys.version[:3]]),