From b5c46b3cc0c1115e545a941ab7c8bce7f9d84109 Mon Sep 17 00:00:00 2001 From: yashikakhurana Date: Mon, 20 Mar 2023 10:21:26 -0700 Subject: [PATCH 1/3] chore(pyproject): Add dependency --- pyproject.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 183bbfb..49e7906 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,16 @@ classifiers = [ "Operating System :: OS Independent", ] +[project.optional-dependencies] +dev = [ + "black~=19.3b0", + "mypy~=0.720", + "flake8~=3.8.4", +] +test = [ + "pytest~=6.1.1", +] + [project.urls] "Homepage" = "https://github.com/chendaniely/pyprojroot" "Bug Tracker" = "https://github.com/chendaniely/pyprojroot/issues" \ No newline at end of file From 21f2df452a421c623e6068267d9a26697ed586a0 Mon Sep 17 00:00:00 2001 From: yashikakhurana Date: Mon, 20 Mar 2023 10:32:31 -0700 Subject: [PATCH 2/3] chore(pyprojroot): #35 build and twine dependency --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 49e7906..671f2b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,6 +28,8 @@ dev = [ "black~=19.3b0", "mypy~=0.720", "flake8~=3.8.4", + "twine~=4.0.2", + "build"~=0.10.0", ] test = [ "pytest~=6.1.1", From 89b92a9c96c630238f691e3fd9606e7e235e2b34 Mon Sep 17 00:00:00 2001 From: yashikakhurana Date: Mon, 20 Mar 2023 10:33:06 -0700 Subject: [PATCH 3/3] chore(pyprojroot): #35 build and twine dependency --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 671f2b3..99fcd20 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ dev = [ "mypy~=0.720", "flake8~=3.8.4", "twine~=4.0.2", - "build"~=0.10.0", + "build~=0.10.0", ] test = [ "pytest~=6.1.1",