From 6d2acf3bba628f62fe91bb778b7bb92a1057969b Mon Sep 17 00:00:00 2001 From: clpo13 Date: Tue, 26 Sep 2023 10:06:38 -0700 Subject: Modernize setuptools build (#5) Remove usage of deprecated `python setup.py test` and move to pyproject.toml for project configuration. --- setup.cfg | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg index 1a5c40a..044e9b4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,9 +1,4 @@ -[aliases] -test = pytest - -[tool:pytest] -addopts = --cov=wikiget --verbose -testpaths = test - [flake8] -exclude = .eggs,.git,__pycache__,build,dist,venv +exclude = .eggs,.git,__pycache__,build,dist,venv,.venv +max-line-length = 88 +extend-ignore = E203 -- cgit v1.2.3