From e3d5b7776e26286ab895dac06c98e3a359fe98bb Mon Sep 17 00:00:00 2001 From: Jaewoo Park Date: Thu, 23 Mar 2023 02:54:07 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Add=20requirements-dev.txt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added requirements.txt and requirements-dev.txt as it is not yet possible to install only dependencies from pyproject.toml. See https://github.com/pypa/pip/issues/11440 for more information. --- requirements-dev.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 requirements-dev.txt diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 0000000..1f3b9f9 --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,16 @@ +# This file contains optional dependencies for the +# `development`, such as updating or testing the +# source codes of the project. + +# In this case, you should install all dependencies +# listed in this file as well as requirements.txt. + +# For example: +# $ python -m pip install [-U] -r requirements.txt +# $ python -m pip install [-U] -r requirements-dev.txt + +hatch +ruff +mypy +black +pytest