| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge pull request #1312 from coldrye-collaboration/gh-97 | Paul Ganssle | 2018-07-11 | 1 | -0/+64 |
| |\ | | | | | fix #97 PEP420: find_packages() | ||||
| | * | Expand documentation for find_packages_ns | Paul Ganssle | 2018-07-04 | 1 | -15/+61 |
| | | | | | | | | | | | This moves the documentation out of "Basic Usage" and expands on some of the caveats of this approach. | ||||
| | * | Add documentation for find_packages_ns() | Carsten Klein | 2018-07-04 | 1 | -0/+18 |
| | | | |||||
| * | | Deprecate upload and register commands | Dustin Ingram | 2018-07-08 | 1 | -61/+27 |
| |/ | |||||
| * | Add changelog entry and include the final unsaved edit to setuptools.txt. ↵ | Jason R. Coombs | 2018-06-02 | 1 | -1/+1 |
| | | | | | Ref #1385. | ||||
| * | Remove documentation about non-package data files that's no longer relevant ↵ | Jason R. Coombs | 2018-06-02 | 1 | -29/+8 |
| | | | | | without eggs. Fixes #1385. | ||||
| * | Merge pull request #1359 from jmbowman/jmbowman/version_from_file | Jason R. Coombs | 2018-05-15 | 1 | -1/+5 |
| |\ | | | | | Support loading version from a file | ||||
| | * | Support loading version from a file | Jeremy Bowman | 2018-05-15 | 1 | -1/+5 |
| | | | |||||
| * | | Add install_requires to example | Jason R. Coombs | 2018-05-15 | 1 | -0/+3 |
| | | | |||||
| * | | Add the phrase declarative config for easier searching | Jason R. Coombs | 2018-05-15 | 1 | -2/+2 |
| |/ | |||||
| * | Fix doc build warnings | Jeremy Bowman | 2018-05-14 | 1 | -1/+1 |
| | | |||||
| * | Update all pypi.python.org URLs to pypi.org | Jon Dufresne | 2018-04-26 | 1 | -3/+3 |
| | | | | | | | For details on the new PyPI, see the blog post: https://pythoninsider.blogspot.ca/2018/04/new-pypi-launched-legacy-pypi-shutting.html | ||||
| * | Add some commas. | Jason R. Coombs | 2018-03-08 | 1 | -3/+3 |
| | | |||||
| * | Updated package_data documentation | David Pugh | 2018-03-08 | 1 | -1/+9 |
| | | |||||
| * | Fix documentation inconsistency on version specifier | Vincent Philippon | 2018-02-19 | 1 | -1/+1 |
| | | | | | | | | | | | | | The `,` is the equivalent of an "and". Also, the pkg_resources section documents and behave like this too: ``` >>> pkg_resources.Requirement('requests>1,>2').specifier.contains('1.2.3') False >>> pkg_resources.Requirement('requests>1,>2').specifier.contains('2.3.4') True ``` | ||||
| * | Reflect find_packages behavior in doc | Dylan Wilson | 2018-01-23 | 1 | -3/+3 |
| | | | | | | | | find_packages doesnt find PEP420 packages but the documentation suggests that it does. see: pypa/setuptools#97 | ||||
| * | Document project_urls setup parameter | Jeremy Stanley | 2017-12-05 | 1 | -0/+10 |
| | | | | | | | | | | | | Add an entry to the Setuptools usage documentation for the project_urls dict, and include it in the "advanced" project example. While at it, adjust the dogfooding use in Setuptools' own setup.py to use HTTPS for the Documentation URL and drop redundant entries for Bug Tracker and Source Code. Also remove a no-op attribute reassignment from egg_info.py. | ||||
| * | Support PEP 345 Project-URL metadata | Jeremy Stanley | 2017-11-22 | 1 | -0/+1 |
| | | | | | | | | | | | | By including one or more Project-URL entries in PKG-INFO metadata, PyPI can display helpful hyperlinks in a generic manner. Add support here to be able to pass it through setup.cfg and setup.py with a project_urls dict. See the corresponding section of the Core Metadata Specifications from the Python Packaging User Guide for details: https://packaging.python.org/specifications/core-metadata/#project-url-multiple-use | ||||
| * | Merge branch 'master' into drop-py26 | Jason R. Coombs | 2017-11-19 | 1 | -46/+46 |
| |\ | |||||
| | * | Docs proofreading | John T. Wodder II | 2017-09-14 | 1 | -46/+46 |
| | | | |||||
| * | | Merge branch 'master' into drop-py26 | Jason R. Coombs | 2017-09-03 | 1 | -201/+106 |
| |\ \ | |/ | |||||
| | * | Add long_description_content_type to metadata table | Dustin Ingram | 2017-08-28 | 1 | -21/+22 |
| | | | |||||
| | * | Update docs with a file list usage example | Sviatoslav Sydorenko | 2017-08-28 | 1 | -2/+2 |
| | | | | | | | | | | | Now it's possible to use it like this: * long_description = file: README.rst, CHANGELOG.rst, LICENSE.rst | ||||
| | * | Docs: notes on setup.cfg and ez_setup | Igor Starikov | 2017-04-12 | 1 | -0/+7 |
| | | | | | | | (see # 1006) | ||||
| | * | Fixes #999: support python_requires, py_modules in configuration files | Marcel Bargull | 2017-04-07 | 1 | -0/+2 |
| | | | |||||
| | * | Dropped support for classifiers subsection handling in setup.cfg (see #952). | idle sign | 2017-02-04 | 1 | -5/+5 |
| | | | |||||
| | * | Added autosectionlabel Sphinx extension and replaced some obsolete links. | smheidrich | 2017-02-02 | 1 | -4/+3 |
| | | | |||||
| | * | Remove documentation for upload_docs command, deprecated in v27. | Jason R. Coombs | 2017-01-07 | 1 | -62/+0 |
| | | | |||||
| | * | Merge pull request #910 from plannigan/master | Jason R. Coombs | 2017-01-07 | 1 | -0/+34 |
| | |\ | | | | | | | Document use of environment markers in extras_require | ||||
| | | * | Document use of install_requires with corrected PEP | Patrick Lannigan | 2017-01-02 | 1 | -7/+7 |
| | | | | | | | | | | | | | | | | PEP 496 is a draft that was never accepted, so it does not have the correct information. | ||||
| | | * | Have documentation link to referenced PEP. | Patrick Lannigan | 2017-01-02 | 1 | -1/+3 |
| | | | | |||||
| | | * | Document use of environment markers in extras_require | Patrick Lannigan | 2017-01-02 | 1 | -0/+32 |
| | | | | |||||
| | * | | Remove documentation about tag-svn-revision. Ref #619. | Jason R. Coombs | 2017-01-02 | 1 | -95/+7 |
| | | | | |||||
| | * | | Remove references to SVN sandbox. | Jason R. Coombs | 2017-01-02 | 1 | -8/+0 |
| | |/ | |||||
| | * | Implemented find() configuration support for `packages`. | idle sign | 2016-12-10 | 1 | -3/+17 |
| | | | |||||
| | * | `read_configuration()` now accepts `ignore_option_errors`. | idle sign | 2016-12-10 | 1 | -1/+7 |
| | | | |||||
| * | | Drop support for Python 2.6, removing lots of compatibility code for a ↵ | Jason R. Coombs | 2016-12-09 | 1 | -1/+1 |
| |/ | | | | leaner, cleaner codebase. Fixes #878. | ||||
| * | Docs update. | idle sign | 2016-12-05 | 1 | -0/+185 |
| | | |||||
| * | Follow PEP8 for keyword arguments syntax in setup | Peter Bittner | 2016-10-14 | 1 | -45/+44 |
| | | |||||
| * | Add basic tests and docs for python_requires | Xavier Fernandez | 2016-07-14 | 1 | -0/+4 |
| | | |||||
| * | Update link to Resource Management API | Michael Klich | 2016-06-02 | 1 | -1/+1 |
| | | |||||
| * | Update rationale for the zip_safe flag | ncoghlan | 2016-04-12 | 1 | -1/+2 |
| | | | | | | | | Importing from a zip file no longer significantly reduces the number of stat calls during import, and may even slow imports down if too many archives are added to sys.path. The outdated rationale was noted by Thomas Güttler on distutils-sig | ||||
| * | Update most bitbucket references to point to Github now. Fixes #422. | Jason R. Coombs | 2016-03-29 | 1 | -1/+1 |
| | | |||||
| * | Point towards SCM plugins for including source files | Alexey Kotlyarov | 2016-03-20 | 1 | -7/+21 |
| | | |||||
| * | Remove CVS and Subversion references in include_package_data docs | Alexey Kotlyarov | 2016-03-17 | 1 | -61/+35 |
| | | |||||
| * | Override upload command to load passwords from keyring when available and ↵20.1 | Jason R. Coombs | 2016-02-11 | 1 | -0/+16 |
| | | | | | not otherwise specified. | ||||
| * | Replace upload docs with a reference to distutils docs, as | Jason R. Coombs | 2016-02-11 | 1 | -48/+3 |
| | | | | | setuptools no longer provides an upload command. | ||||
| * | Add a bit more detail about the setup script and what to expect. Fixes #466. | Jason R. Coombs | 2015-11-27 | 1 | -2/+8 |
| | | |||||
| * | Remove cruft from Subclassing section | Jason R. Coombs | 2015-09-05 | 1 | -3/+1 |
| | | |||||
| * | Update documentation to reflect no integrated SCM support. | Jason R. Coombs | 2015-09-05 | 1 | -2/+2 |
| | | |||||
