summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Add an exception at install for python < 3.6.2 (#5171)Pierre Sassoulas2021-10-171-0/+17
| | | | | | | * Add an exception for python < 3.6.2 See https://github.com/PyCQA/pylint/issues/5065 for reasoning Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
* Migration from setuptools_scm to tbumpPierre Sassoulas2021-06-171-1/+1
|
* Add scm_setuptools for packagingPierre Sassoulas2021-04-261-1/+1
|
* Fix test failing if setup.py is not a launchable scriptPierre Sassoulas2021-04-051-2/+1
|
* Handle the version in setup.cfg (as well as everything else)Pierre Sassoulas2021-04-051-13/+1
|
* Remove extra-require from the packagingPierre Sassoulas2021-04-051-24/+1
|
* Use setup.cfg for readme and licensingPierre Sassoulas2021-04-051-5/+0
|
* Use setup.cfg for existing hard coded valuesPierre Sassoulas2021-04-051-44/+1
|
* Import cleanup in setup.pyPierre Sassoulas2021-04-051-8/+4
|
* Move informations that never change in the setup.pyPierre Sassoulas2021-04-051-32/+58
|
* Add a dev extra requirePierre Sassoulas2021-04-051-1/+16
|
* Remove duplication in doc dependenciesPierre Sassoulas2021-04-051-1/+4
|
* Upgrade setup.py: move from distutil to setuptoolsPierre Sassoulas2021-04-051-158/+39
| | | | | | | | Move from os.path to pathlib.Path and use setuptools.find_packages(), remove pytest-runner from the setup (see https://pypi.org/project/pytest-runner/) remove the bin directory and scripts variable in pkginfo as entrypoint+setuptools does the job, remove cmd_class as it's a deprecated distutils features. Remove dependency links as we do not have any non public dependencies.
* Fix Import of 'install_lib' is not usedPierre Sassoulas2021-03-311-4/+0
|
* Update copyright notice with copyritePierre Sassoulas2021-02-281-1/+0
|
* Apply copyrite --contribution-thresholdPierre Sassoulas2021-02-211-1/+5
|
* Move from % string formatting syntax to f-string or .format()Pierre Sassoulas2021-02-211-2/+2
|
* Ignore F401 'distutils.command.install_lib' imported but unusedPierre Sassoulas2021-02-151-1/+3
| | | | Do we even want to use distutil anyway ?
* Drop support for Python 3.5 to fix typingMarc Mueller2021-02-151-1/+1
| | | | * Variable annotation (PEP 526) requires Python 3.6
* Fix Need type annotation for '__pkginfo__'Pierre Sassoulas2021-02-071-1/+2
|
* Fix pylint warning in bin/ and setup.pyPierre Sassoulas2020-12-141-8/+5
|
* change specifier to ~=frostming2020-09-081-1/+1
|
* Fix the ambiguous python version specifierFrost Ming2020-09-081-1/+1
| | | `>=3.5.*` can make some packaging tools confused.
* Sets up copyrighthippo912020-08-201-1/+5
|
* Switch to isort 5 for pylint's own codeDamien Baty2020-08-181-1/+1
|
* Add missing test dependency pytest-benchmark to setup.pyBryce Guinta2020-07-161-1/+1
| | | | Without this dependency the test suite fails
* Add What's New project URLVille Skyttä2020-05-061-0/+2
| | | | Background info at https://github.com/pypa/warehouse/pull/7882
* Add missing copyright annotations for the past releasesClaudiu Popa2020-04-271-1/+6
|
* also lint setup.pyAnthony Sottile2020-03-241-4/+4
|
* pyupgrade: automated removal of python2 constructsAnthony Sottile2020-03-241-2/+1
| | | | | | | | | | | | | using configuration: ```yaml - repo: https://github.com/asottile/pyupgrade rev: v2.1.0 hooks: - id: pyupgrade args: [--py3-plus, --keep-percent-format] exclude: ^tests/(extensions/data/|functional/|input/|regrtest_data/) ```
* Fix installation of pylint from source with no localeAnthony Sottile2020-03-241-1/+1
|
* Make installing pytest-runner contingent on running testsEnji Cooper2019-11-161-1/+5
| | | | | | | | This monkeypatches several changes from [PyCQA/mccabe](https://github.com/PyCQA/mccabe/blob/master/setup.py) over to the pylint repo, since the pattern was equivalent between the two projects. Signed-off-by: Enji Cooper <yaneurabeya@gmail.com>
* Fix pylint reported issuesEnji Cooper2019-11-161-7/+7
| | | | | | | | | | | * Sort imports per PEP8 * Rename globally allocated symbol to avoid variable shadowing issue. * Remove squelching of W0704, since recent versions of pylint do not support the warning, resulting in an error with `pylint -E`. * Add `pylint: disable=unused-import` to seemingly unused imports which actually affect build behavior. Signed-off-by: Enji Cooper <yaneurabeya@gmail.com>
* Remove redundant compatibility code (#3097)Hugo van Kemenade2019-09-121-3/+0
| | | | We no longer support Python 2 so we can remove the compatibility code we had in place for that version.
* Stopped installing tests with packageAshley Whetter2019-06-201-31/+1
|
* Dropped support for Python 3.4Claudiu Popa2019-06-201-1/+1
| | | | | | It reached EoL a while ago an our typed_ast dependency also stopped working for 3.4. Ideally just use a more recent Python version, which also helps us as we don't have to maintain support for multiple minor versions at once.
* Replace the modname and distname to the actual name of the packageClaudiu Popa2019-05-291-4/+2
|
* Style - Re-Apply black following the isort cleanupPierre Sassoulas2019-03-201-57/+66
| | | | Change with isort triggered change with black.
* Style - Apply isort on all apllicable filesPierre Sassoulas2019-03-201-4/+6
|
* Update copyright noticesClaudiu Popa2018-07-151-1/+1
|
* Replace set() calls with set literalsClaudiu Popa2018-05-091-2/+1
|
* Stop advertising python 2 supportClaudiu Popa2018-01-251-1/+1
|
* Regenerate copyright noticesClaudiu Popa2017-12-151-1/+10
|
* Drop support for EOL Python 3.3Hugo2017-12-111-1/+1
|
* Update classifiers and add python_requiresHugo2017-12-111-3/+1
|
* Remove NO_SETUPTOOLS. Folks could just install setuptools before installing ↵Claudiu Popa2017-07-201-2/+0
| | | | pylint. Close #1571
* Allow running tests without installing, using pytest and setuptools. Close #1062Claudiu Popa2016-12-181-0/+3
|
* Adjust README path in setup.py (#1102)Florian Bruhin2016-09-171-1/+1
| | | | This is probably what caused #1100?
* Even more granular copyrights (thanks to copyrite)Claudiu Popa2016-07-231-2/+5
|
* Keep a consistent copyright notice across the board.Claudiu Popa2016-07-191-17/+5
| | | | | This was changed automatically in #894, but apparently we need to have the copyright notice somewhere.