summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Dropped support for unmaintained Python versionsAlex Grönholm2021-12-221-2/+1
|
* Fixed installing from sdist in some non-UTF8 environmentsAlex Grönholm2020-01-281-1/+2
| | | | Fixes #331.
* Fixed installation from sdist (#334)Alex Grönholm2020-01-271-1/+1
| | | | | | | Wheel cannot use pep517 yet because the installation process involves installing wheel because the setuptools build backend declares it as a dependency for building wheels. A future update of pip may solve this problem. Setuptools_scm, on the other hand, requires wheel as a build time dependency so if somebody tries to install wheel using `--no-binary=:all:`, it also creates a circular dependency. Fixes #332.
* Switched to setuptools_scmAlex Grönholm2020-01-221-1/+1
| | | | New versions are now made by declaring a new version in the changelog (docs/news.rst) and pushing this change to Github. The workflow will see this version and create a new tag which then triggers the release workflow.
* Moved the contents of setup.py to setup.cfgAlex Grönholm2019-10-251-65/+2
|
* Setup.py - fix inconsistent indents (#315)Reece Dunham2019-10-011-5/+5
|
* Added support for Python 3.8Alex Grönholm2019-08-161-1/+2
|
* Always close files in setup.py (#271)Jon Dufresne2018-10-281-3/+8
| | | | | | When Python warnings are enabled, fixes warning of the form: setup.py:10: ResourceWarning: unclosed file <_io.TextIOWrapper name='.../README.rst' mode='r' encoding='utf8'> README = io.open(os.path.join(here, 'README.rst'), encoding='utf8').read()
* Added Packaging to the list of classifiersAlex Grönholm2018-07-171-0/+1
|
* Renamed the wheel.tool package to wheel.cli and migrated CLI stuff thereAlex Grönholm2018-07-171-1/+1
| | | | The VerifyingZipFile class was also merged to the WheelFile class.
* Removed wheel signing and verifying featuresAlex Grönholm2018-07-171-3/+0
| | | | | | | This was discussed on the distutils-sig mailing list: https://mail.python.org/mm3/archives/list/distutils-sig@python.org/thread/MU2T6FRFNLRDEWSBJDRAFGDIFWCC6OIS/ Fixes #196.
* Added official Python 3.7 supportAlex Grönholm2018-07-171-1/+2
| | | | Closes #243.
* Moved links to setup.py and added a note about the lack of of public APIAlex Grönholm2018-07-171-0/+5
|
* Initial changes for the documentation overhaulAlex Grönholm2018-07-171-2/+1
| | | | Fixes #122.
* Pass python_requires argument to setuptools (#216)Jon Dufresne2018-04-011-0/+1
| | | | | | | | | | | | | | | | | | Helps pip decide what version of the library to install. https://packaging.python.org/tutorials/distributing-packages/#python-requires > If your project only runs on certain Python versions, setting the > python_requires argument to the appropriate PEP 440 version specifier > string will prevent pip from installing the project on other Python > versions. https://setuptools.readthedocs.io/en/latest/setuptools.html#new-and-changed-setup-keywords > python_requires > > A string corresponding to a version specifier (as defined in PEP 440) > for the Python version, used to specify the Requires-Python defined in > PEP 345.
* Removed the "tool" extras from setup.pyAlex Grönholm2018-04-011-1/+0
|
* Don't create metadata.json anymoreAlex Grönholm2018-03-301-1/+1
| | | | | This was a thing in the now-withdrawn PEP 426. Fixes #195.
* Renamed the testing extra to test, as per PEP 426Alex Grönholm2017-07-261-1/+1
|
* Removed implementation specific classifiers from setup.pyAlex Grönholm2017-07-261-3/+1
| | | | | Their presence might give the impression that wheel only works on CPython and PyPy and not, say, Jython or IronPython.
* Dropped support for Python 3.2 and 3.3Alex Grönholm2017-07-261-2/+0
| | | | | | 3.2 its past its End Of Life and 3.3 will be too in September. They may still continue to work but there is little point in doing extra work to keep the codebase compatible with these.
* Code style fixes in setup.pyAlex Grönholm2017-07-261-14/+11
|
* Replaced @yield_fixture with @fixtureAlex Grönholm2017-07-261-1/+1
| | | | Pytest 3.0 deprecated @yield_fixture.
* Improved testing configurationAlex Grönholm2017-07-261-7/+2
|
* Added yours truly as maintainerAlex Grönholm2017-07-261-1/+4
|
* Renamed README.txt to README.rstAlex Grönholm2017-07-261-1/+1
|
* MergeJon Dufresne2017-07-071-1/+6
|\
| * Drop support for Python 2.6Jon Dufresne2017-07-071-5/+1
| |
| * Document support for Python 3.6 and add it to the testing matrixJon Dufresne2017-06-041-13/+23
| | | | | | | | Pin jsonschema to allow tests to pass on Python 2.6.
* | Document support for Python 3.6 and add it to the testing matrixJon Dufresne2017-07-071-14/+15
| | | | | | | | | | | | Drops support for Python 2.6. Remove now unnecessary import workarounds. Add missing trove classifiers.
* | use dict-format entry_pointsDaniel Holth2016-09-141-6/+8
|/
* keyring on Python 2.6 depends on importlib.Nate Coraor2016-02-031-0/+1
|
* Update signatures to require keyrings.alt for improved compatibility with ↵Jason R. Coombs2016-02-021-1/+1
| | | | keyring 8.0
* point to https:// home page urlDaniel Holth2014-11-121-1/+1
|
* remove *2wheel scripts in favor of 'wheel convertDaniel Holth2014-05-081-2/+0
|
* update json metadata generationDaniel Holth2014-04-101-2/+2
|
* docs updateDaniel Holth2014-04-101-12/+1
|
* use & support setuptools extras:markers syntax.Daniel Holth2014-04-101-1/+3
|
* replace dirspec with pyxdg (hosted on pypi); bump version to 0.23.0Daniel Holth2014-03-261-6/+6
|
* avoid importing pkg_resources except when necessary.Daniel Holth2013-07-201-1/+1
| | | | include version in WHEEL's Generator: key
* implement pydist.schema renameDaniel Holth2013-07-191-2/+6
|
* parse METADATA as utf-8 for Python 3Daniel Holth2013-07-031-1/+1
|
* update test dependenciesDaniel Holth2013-06-231-1/+1
|
* use pytest for testsDaniel Holth2013-06-231-2/+1
|
* update pymeta.json to latest specDaniel Holth2013-06-221-1/+1
|
* validate prototype pymeta.json against schemaDaniel Holth2013-06-011-1/+2
|
* 0.16.00.16.0Daniel Holth2013-04-291-1/+1
|
* jwk alg changes to kty in revision -08Daniel Holth2013-03-191-1/+1
|
* bump versionDaniel Holth2013-03-051-1/+1
|
* update classifiersDaniel Holth2013-02-221-1/+1
|
* bump versionDaniel Holth2013-02-171-1/+1
|