diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-09-17 19:01:28 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-09-17 19:15:09 +0200 |
commit | 199024f9b878304f93878fcf4733fc9682baecdb (patch) | |
tree | c3a6c9228e5ed50cce63e9aa50b3d57e097f0ec0 | |
parent | 2d198fcb7d58402d629b886e1f2f85206b2fda87 (diff) | |
download | gemato-199024f9b878304f93878fcf4733fc9682baecdb.tar.gz |
Include all deps in pyproject.toml
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | pyproject.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index 2511cec..f5fa742 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,16 @@ classifiers = [ ] requires-python = ">=3.6" +[project.optional-dependencies] +pretty-log = ["rich"] +wkd-refresh = ["requests"] +test = ["pytest"] +test-full = [ + "pytest", + "requests", + "responses", +] + [project.urls] Homepage = "https://github.com/mgorny/gemato/" |