From f194759fea4c665f01a2aa2b07dda51972d4baea Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Tue, 1 Oct 2024 19:20:56 +0100 Subject: [PATCH] add development dependencies to pyproject.toml #nolog --- .gitignore | 3 +++ pyproject.toml | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/.gitignore b/.gitignore index b6e4761..e0cac88 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,9 @@ share/python-wheels/ .installed.cfg *.egg MANIFEST +.direnv +.envrc +requirements* # PyInstaller # Usually these files are written by a python script from a template diff --git a/pyproject.toml b/pyproject.toml index a3f84d7..6c69fa8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,12 @@ Homepage = "https://github.com/miguelgrinberg/simple-websocket" "Bug Tracker" = "https://github.com/miguelgrinberg/simple-websocket/issues" [project.optional-dependencies] +dev = [ + "tox", + "flake8", + "pytest", + "pytest-cov", +] docs = [ "sphinx", ]