Skip to content

Commit

Permalink
Remove setuptools from setup.py's install_requires.
Browse files Browse the repository at this point in the history
 * docs/install.rst: Add comment regarding Distribute & Pip in the
   Hitchhiker's Guide.
 * setup.py: Remove setuptools.
  • Loading branch information
jmafc committed Jan 29, 2013
1 parent db4862f commit 4c46d72
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
13 changes: 9 additions & 4 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,17 @@ or::

sudo easy_install Pyrseas

If this is the first time you are installing a Python package, please
do yourself a favor and read and follow the instructions in the
"Distribute & Pip" subsection of the "Installing Python on ..."
section for your platform of the `The Hitchhiker’s Guide to Python!
<http://docs.python-guide.org/en/latest/index.html>`_.

.. note:: On FreeBSD, it has been reported that it is necessary to
install the Python ``distribute`` package, prior to
installing Pyrseas with ``pip``. In other words, you need
to run ``sudo pip install distribute`` before the above
``pip`` command. This may also be necessary on other BSD
variants.
installing Pyrseas with ``pip``. This may also be necessary
on other BSD variants. See the *Hitchhiker's Guide* above
for further details.

.. note:: On Windows 64-bit, it has been reported that it is necessary
to obtain unofficial versions of the ``distribute`` and
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
'yamltodb = pyrseas.yamltodb:main']},

install_requires=[
'setuptools >= 0.6',
'psycopg2 >= 2.2',
'PyYAML >= 3.09'],

Expand Down

0 comments on commit 4c46d72

Please sign in to comment.