1. 09 Jul, 2005 1 commit
  2. 08 Jul, 2005 9 commits
    • PJ Eby's avatar
      Doc and other updates for 0.5a8 release. Add project aliases for source · 82b1c266
      PJ Eby authored
      and binary register+upload.
      
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041100
      82b1c266
    • PJ Eby's avatar
      Delete empty sections when their last option is deleted. · d798d694
      PJ Eby authored
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041099
      d798d694
    • PJ Eby's avatar
      Cleaner argument quoting in command aliases. · 1d7b59f5
      PJ Eby authored
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041098
      1d7b59f5
    • PJ Eby's avatar
      Partial first draft documentation for setuptools. Split revision history · d399fdec
      PJ Eby authored
      between setuptools and easy_install docs.  Pull project's long_description
      from the documentation, for a more informative PyPI project page.
      
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041097
      d399fdec
    • PJ Eby's avatar
      Restructured the 'alias' command to take arguments instead of options, and · ef617190
      PJ Eby authored
      to display the definition of the named alias or of all aliases.
      
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041096
      ef617190
    • PJ Eby's avatar
      Fix a couple of command descriptions. · 5eec64a0
      PJ Eby authored
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041095
      5eec64a0
    • PJ Eby's avatar
      Added support for defining command aliases in distutils configuration · 6050f536
      PJ Eby authored
      files, under the "[aliases]" section.  To prevent recursion and to allow
      aliases to call the command of the same name, a given alias can be expanded
      only once per command-line invocation.  You can define new aliases with the
      "alias" command, either for the local, global, or per-user configuration.
      
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041094
      6050f536
    • PJ Eby's avatar
      * Added "rotate" command to delete old distribution files, given a set of · 592269af
      PJ Eby authored
      patterns to match and the number of files to keep.  (Keeps the most
      recently-modified distribution files matching each pattern.)
      
      * Added "saveopts" command that saves all command-line options for the
      current invocation to the local, global, or per-user configuration file.
      Useful for setting defaults without having to hand-edit a configuration
      file.
      
      * Added a "setopt" command that sets a single option in a specified
      distutils configuration file.
      
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041093
      592269af
    • PJ Eby's avatar
      The "egg_info" command now always sets the distribution metadata to "safe" · 56fcb8fd
      PJ Eby authored
      forms of the distribution name and version, so that distribution files will
      be generated with parseable names (i.e., ones that don't include '-' in the
      name or version).  Also, this means that if you use the various ``--tag``
      options of "egg_info", any distributions generated will use the tags in the
      version, not just egg distributions.
      
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041092
      56fcb8fd
  3. 07 Jul, 2005 10 commits
  4. 06 Jul, 2005 5 commits
    • PJ Eby's avatar
      Bump version to 0.5a5. · b52565a6
      PJ Eby authored
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041081
      b52565a6
    • PJ Eby's avatar
      Added ``develop`` command to ``setuptools``-based packages. This command · e5eac13d
      PJ Eby authored
      installs an ``.egg-link`` pointing to the package's source directory, and
      script wrappers that ``execfile()`` the source versions of the package's
      scripts.  This lets you put your development checkout(s) on sys.path
      without having to actually install them.  (To uninstall the link, use
      use ``setup.py develop --uninstall``.)
      
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041080
      e5eac13d
    • PJ Eby's avatar
      Made ``easy_install`` a standard ``setuptools`` command, moving it from · 8468e915
      PJ Eby authored
      the ``easy_install`` module to ``setuptools.command.easy_install``.  Note
      that if you were importing or extending it, you must now change your
      imports accordingly.  ``easy_install.py`` is still installed as a script,
      but not as a module.
      
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041079
      8468e915
    • PJ Eby's avatar
      Enhanced the ``test`` command so that it doesn't install the package, but · 3686c4d8
      PJ Eby authored
      instead builds any C extensions in-place, updates the ``.egg-info``
      metadata, adds the source directory to ``sys.path``, and runs the tests
      directly on the source.  This avoids an "unmanaged" installation of the
      package to ``site-packages`` or elsewhere.  (Also, fix a breaking test of
      older dependency support; this should probably be removed altogether, as
      long as nobody's using it.)
      
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041078
      3686c4d8
    • PJ Eby's avatar
      Added ``egg_info`` command to ``setuptools``-based packages. This command · 4a63bc6f
      PJ Eby authored
      just creates or updates the "projectname.egg-info" directory, without
      building an egg.  It's used by the ``bdist_egg`` command now, and will be
      used by the ``test`` and ``develop`` commands later on.
      
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041077
      4a63bc6f
  5. 04 Jul, 2005 3 commits
    • PJ Eby's avatar
      Fix a problem using bdist_egg with non-setuptools distributions. · 52928dfe
      PJ Eby authored
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041076
      52928dfe
    • PJ Eby's avatar
      Fix typo · 8a4d2f4e
      PJ Eby authored
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041075
      8a4d2f4e
    • PJ Eby's avatar
      Add missing download links · ca83a912
      PJ Eby authored
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041074
      ca83a912
  6. 27 Jun, 2005 1 commit
  7. 25 Jun, 2005 1 commit
    • PJ Eby's avatar
      0.5a3 bugfix release · 5ed7f988
      PJ Eby authored
      --HG--
      branch : setuptools
      extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041072
      5ed7f988
  8. 15 Jun, 2005 6 commits
  9. 14 Jun, 2005 4 commits