aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorclpo13 <clpo13@gmail.com>2023-09-26 10:06:38 -0700
committerGitHub <noreply@github.com>2023-09-26 10:06:38 -0700
commit6d2acf3bba628f62fe91bb778b7bb92a1057969b (patch)
treefd902648c2ba522829772a8f9630053df18395d4 /setup.cfg
parent1941452615ff5b810e180437ae74e16a6d14eba6 (diff)
downloadwikiget-6d2acf3bba628f62fe91bb778b7bb92a1057969b.tar.gz
wikiget-6d2acf3bba628f62fe91bb778b7bb92a1057969b.zip
Modernize setuptools build (#5)
Remove usage of deprecated `python setup.py test` and move to pyproject.toml for project configuration.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg11
1 files changed, 3 insertions, 8 deletions
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