aboutsummaryrefslogtreecommitdiffstats
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
...
* Update roadmapJason R. Coombs2018-06-141-2/+6
|
* Add changelog entry and include the final unsaved edit to setuptools.txt. ↵Jason R. Coombs2018-06-021-1/+1
| | | | Ref #1385.
* Remove documentation about non-package data files that's no longer relevant ↵Jason R. Coombs2018-06-021-29/+8
| | | | without eggs. Fixes #1385.
* Drop support for EOL Python 3.3Hugo2018-05-241-1/+1
|
* Add reference to Setuptools Developers team for clarity of maintenance and ↵Jason R. Coombs2018-05-201-4/+3
| | | | removed reference to Jason as maintainer.
* Make minor fixes to release docsJeremy Bowman2018-05-191-1/+5
|
* Update release process docsJeremy Bowman2018-05-171-13/+24
|
* Merge pull request #1359 from jmbowman/jmbowman/version_from_fileJason R. Coombs2018-05-151-1/+5
|\ | | | | Support loading version from a file
| * Support loading version from a fileJeremy Bowman2018-05-151-1/+5
| |
* | Merge pull request #1363 from Zelgius/pull_request_templateJason R. Coombs2018-05-151-2/+2
|\ \ | | | | | | Pull request template
| * | Update developer guide documentationMason Egger2018-05-151-2/+2
| |/ | | | | | | Add changelog for PR #1363 (issue #1355)
* | Add install_requires to exampleJason R. Coombs2018-05-151-0/+3
| |
* | Add the phrase declarative config for easier searchingJason R. Coombs2018-05-151-2/+2
|/
* Fix doc build warningsJeremy Bowman2018-05-143-2/+6
|
* Add documentation on how to create a changelog entryPaul Ganssle2018-05-141-0/+32
|
* Change Developer Guide instruction on how to run testsMiriam Sexton2018-05-141-2/+6
|
* Change Developer Guide instruction on how to checkout from githubMiriam Sexton2018-05-141-1/+1
|
* Add tox environment for docsJeremy Bowman2018-05-141-5/+7
|
* Update all pypi.python.org URLs to pypi.orgJon Dufresne2018-04-264-10/+9
| | | | | | 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. Coombs2018-03-081-3/+3
|
* Updated package_data documentationDavid Pugh2018-03-081-1/+9
|
* Remove reference to bitbucket mirror. Fixes #1280.Jason R. Coombs2018-02-201-3/+0
|
* Fix documentation spacing error causing wrong formatting.Vincent Philippon2018-02-191-1/+1
|
* Fix documentation inconsistency on version specifierVincent Philippon2018-02-191-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 docDylan Wilson2018-01-231-3/+3
| | | | | | | find_packages doesnt find PEP420 packages but the documentation suggests that it does. see: pypa/setuptools#97
* Document project_urls setup parameterJeremy Stanley2017-12-051-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 metadataJeremy Stanley2017-11-221-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-py26Jason R. Coombs2017-11-191-46/+46
|\
| * Docs proofreadingJohn T. Wodder II2017-09-141-46/+46
| |
* | Merge branch 'master' into drop-py26Jason R. Coombs2017-09-039-277/+203
|\|
| * Add long_description_content_type to metadata tableDustin Ingram2017-08-281-21/+22
| |
| * Update docs with a file list usage exampleSviatoslav Sydorenko2017-08-281-2/+2
| | | | | | | | | | Now it's possible to use it like this: * long_description = file: README.rst, CHANGELOG.rst, LICENSE.rst
| * Use bump2version for releases so that annotated tags are employed.Jason R. Coombs2017-06-011-1/+1
| |
| * Update release process to give guidance on updating the changelog prior to ↵Jason R. Coombs2017-06-011-1/+11
| | | | | | | | release.
| * Remove section on bootstrap branch, no longer relevant.Jason R. Coombs2017-06-011-15/+0
| |
| * Docs: notes on setup.cfg and ez_setupIgor Starikov2017-04-121-0/+7
| | | | | | (see # 1006)
| * Fixes #999: support python_requires, py_modules in configuration filesMarcel Bargull2017-04-071-0/+2
| |
| * Although bootstrap.py is installing the deps, it removes them as well, so ↵Jason R. Coombs2017-03-311-0/+2
| | | | | | | | doc builds still require build deps.
| * Constrain hack to the RTD environment. Rely on bootstrap routine to make ↵Jason R. Coombs2017-03-312-7/+8
| | | | | | | | dependencies available.
| * Hack must genuflect to the arbitrory invocation locationJason R. Coombs2017-03-311-1/+3
| |
| * Make sure bootstrap finishes before continuing, and ensure that ↵Jason R. Coombs2017-03-301-2/+2
| | | | | | | | jaraco.packaging.sphinx is run before rst.linker.
| * Remove excess hackJason R. Coombs2017-03-301-1/+0
| |
| * Try running bootstrap in subprocess in order to be in the project root.Jason R. Coombs2017-03-301-0/+3
| |
| * Add hack to invoke bootstrap script so that setup.py --version can be invoked.Jason R. Coombs2017-03-301-0/+5
| |
| * Require a late version of setuptools to allow the docs to invoke setup.pyJason R. Coombs2017-03-301-0/+2
| |
| * Update docs to use jaraco.packaging.sphinx to grab metadata from the package.Jason R. Coombs2017-03-302-49/+20
| |
| * Dropped support for classifiers subsection handling in setup.cfg (see #952).idle sign2017-02-041-5/+5
| |
| * Require sphinx 1.4 for autosectionlabel plugin. Ref #957.Jason R. Coombs2017-02-031-0/+1
| |
| * Added autosectionlabel Sphinx extension and replaced some obsolete links.smheidrich2017-02-023-11/+8
| |
| * Remove installation instructions from the README and instead refer to the ↵Jason R. Coombs2017-01-151-0/+38
| | | | | | | | Python Packaging User's Guide, which indicates to use pip for installing setuptools. Moved Credits to the history section of the documentation. Cleaned up hyperlinks.