diff options
Diffstat (limited to 'pocketbook/pyproject.toml')
| -rw-r--r-- | pocketbook/pyproject.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pocketbook/pyproject.toml b/pocketbook/pyproject.toml new file mode 100644 index 0000000..afc5c71 --- /dev/null +++ b/pocketbook/pyproject.toml @@ -0,0 +1,21 @@ +[build-system] +requires = ["setuptools>=68.0"] +build-backend = "setuptools.build_meta" + +[project] +name = "pocketbook" +version = "0.1.0" +description = "GTK4 layer-shell notes panel for Hyprland" +requires-python = ">=3.12" +dependencies = [ + "PyGObject", +] + +[project.scripts] +pocketbook = "pocketbook.__main__:main" + +[tool.setuptools.packages.find] +where = ["src"] + +[tool.pytest.ini_options] +testpaths = ["tests"] |
