aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
AgeCommit message (Collapse)AuthorFilesLines
2021-05-13setup.cfg: update version metadata [skip ci]Michael Hirsch1-1/+1
Co-authored-by: Michael Hirsch <scivision@users.noreply.github.com>
2021-03-10setuptools: move stuff to declarative cfg if possible [skip ci]Eli Schwartz1-1/+11
We're down to just declaring the data files in python now. setup.cfg can, uniquely, retrieve version info by trying to parse the AST for simple assignments (which we use) instead of importing the entire module.
2020-11-20setup.cfg: fix python requires to be 3.6.0Dylan Baker1-1/+1
2020-10-30setup.cfg: Add pytest discovery argsDylan Baker1-0/+3
We have a single giant file for our tests, but a number of files that match pytest's default discovery globs. To fix that, let's tell pytest what to do. This means you can just `pytest` and get the right results. It also helps IDE's like vscode correctly identify tests.
2020-04-21setup.cfg: Mark setuptools as requiredDylan Baker1-0/+2
It's required, lets just document it as such.
2019-12-05pytest: Fix test warningsDaniel Mensinger1-1/+4
2019-11-02Ensure setuptools via PEP508/518 pyproject.tomlMichael Hirsch, Ph.D1-0/+4
2019-07-11Remove unnecessary setup.cfg lines that confound offline useMichael Hirsch, Ph.D1-3/+0
2019-07-11minimum python 3.5.2Michael Hirsch, Ph.D1-1/+1
2019-07-11ENH: metadata PEP390 setup.cfgMichael Hirsch, Ph.D1-33/+35
https for Meson docs url Co-Authored-By: Elliott Sales de Andrade <quantum.analyst@gmail.com>
2019-04-29Fix builtin variable namesDaniel Mensinger1-0/+2
2018-12-02flake8: ignore W504: line break after binary operatorXavier Claessens1-0/+2
It wasn't an error before, and plenty of files does that.
2018-07-02setup.cfg: Don't warn about commented codeNirbheek Chauhan1-0/+2
2018-06-06Fix issues found by flake8Xavier Claessens1-0/+4
2017-09-21flake8: disable E731: do not assign a lambda expression, use a defLuke Shumaker1-3/+5
It has too many false positives. It was complaining about things like if this: fn = some_func else: fn = lambda x: ... Where obviously, "fn" can't be a def, and it would be silly to introduce some other name to use as the def, just to assign it to fn.
2017-01-28vs: Use CompilerArgs() for compile and link argsNirbheek Chauhan1-1/+3
At the same time also fix the order in which they are added. They now match the order used in the Ninja backend.
2017-01-28Disable E266 in flake8Nirbheek Chauhan1-1/+3
Don't tell me how to format my comments!
2017-01-11style: disable flake8 warnings E241, E251, E305, E401Mike Sinkovsky1-1/+9
2016-12-29setup.cfg: fix syntaxIgor Gnatenko1-2/+2
2016-12-28Just say no.Jussi Pakkanen1-0/+2
2016-12-23setup.cfg: ignore couple of PEP8 errorsIgor Gnatenko1-1/+6
We don't care about E261 and temporarily ignore E501. Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
2016-12-21Shut down the noise.Jussi Pakkanen1-1/+1
2016-12-21add flake8 configurationIgor Gnatenko1-0/+2
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>