<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-setuptools-git.git/setuptools/command/depends.py, branch feature/restore-editable-pythonpath</title>
<subtitle>github.com: pypa/setuptools.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/'/>
<entry>
<title>Got rid of the no-longer meaningful "depends" command.  Consolidated the</title>
<updated>2005-08-06T19:29:49+00:00</updated>
<author>
<name>PJ Eby</name>
<email>distutils-sig@python.org</email>
</author>
<published>2005-08-06T19:29:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=8afe820f59c3b63795bd235f2800b0e1329eb7e1'/>
<id>8afe820f59c3b63795bd235f2800b0e1329eb7e1</id>
<content type='text'>
replacement of the "install" command so that installation is always via
easy_install, but doesn't use the previous kludgy intereception technique.
Allow ``extra_path`` to be set, but ignore it, so that when easy_install
wraps a package that uses it, there won't be any confusion as to the
desired installation location.

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041181
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
replacement of the "install" command so that installation is always via
easy_install, but doesn't use the previous kludgy intereception technique.
Allow ``extra_path`` to be set, but ignore it, so that when easy_install
wraps a package that uses it, there won't be any confusion as to the
desired installation location.

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041181
</pre>
</div>
</content>
</entry>
<entry>
<title>remove excess blank lines, and apply whitespace more in line with the Python</title>
<updated>2004-04-05T20:21:53+00:00</updated>
<author>
<name>Fred Drake</name>
<email>distutils-sig@python.org</email>
</author>
<published>2004-04-05T20:21:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=9274fa3cfbecf55ebc38a95719f899b8f3ebd273'/>
<id>9274fa3cfbecf55ebc38a95719f899b8f3ebd273</id>
<content type='text'>
style guidelines in PEP 8

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4040896
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
style guidelines in PEP 8

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4040896
</pre>
</div>
</content>
</entry>
<entry>
<title>Compute command line that should be passed to child setup scripts.</title>
<updated>2004-03-22T01:12:31+00:00</updated>
<author>
<name>PJ Eby</name>
<email>distutils-sig@python.org</email>
</author>
<published>2004-03-22T01:12:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=2e83526e517ecb61170f061af4cbc213dfa1ef0b'/>
<id>2e83526e517ecb61170f061af4cbc213dfa1ef0b</id>
<content type='text'>
Warn user if unsupported options are supplied, and cancel unless
'depends -i' (aka '--ignore-extra-args') was used.

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4040880
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Warn user if unsupported options are supplied, and cancel unless
'depends -i' (aka '--ignore-extra-args') was used.

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4040880
</pre>
</div>
</content>
</entry>
<entry>
<title>Flesh out 'depends' command to display dependencies' status, and halt if</title>
<updated>2004-03-20T20:52:12+00:00</updated>
<author>
<name>PJ Eby</name>
<email>distutils-sig@python.org</email>
</author>
<published>2004-03-20T20:52:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=7ce55cabc53fe2c1378446ba0557e5f716c0cd31'/>
<id>7ce55cabc53fe2c1378446ba0557e5f716c0cd31</id>
<content type='text'>
all requirements aren't met.  (Also, check planned install location for
the dependencies, as well as checking sys.path.)  Also:

* Allow 'Feature()' objects to include 'Require()' objects, so that
  dependencies can be optional

* 'Require()' objects can set a homepage, whose URL will be displayed by
  the 'depends' command if the dependency needs to be installed.

* Misc. fixes/refactoring of version validation to properly handle
  "unknown" versions, and to decouple version fetching from version
  checking.

* Updated TODO to remove various completed items.

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4040876
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
all requirements aren't met.  (Also, check planned install location for
the dependencies, as well as checking sys.path.)  Also:

* Allow 'Feature()' objects to include 'Require()' objects, so that
  dependencies can be optional

* 'Require()' objects can set a homepage, whose URL will be displayed by
  the 'depends' command if the dependency needs to be installed.

* Misc. fixes/refactoring of version validation to properly handle
  "unknown" versions, and to decouple version fetching from version
  checking.

* Updated TODO to remove various completed items.

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4040876
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial checkin of setuptools 0.0.1.</title>
<updated>2004-03-19T20:53:14+00:00</updated>
<author>
<name>PJ Eby</name>
<email>distutils-sig@python.org</email>
</author>
<published>2004-03-19T20:53:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=8423e1ed14ac1691c2863c6e8cac9230cf558d7b'/>
<id>8423e1ed14ac1691c2863c6e8cac9230cf558d7b</id>
<content type='text'>
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4040869
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4040869
</pre>
</div>
</content>
</entry>
</feed>
