From b851e32ae1f29a266a613de65601dd1cdbbd3c56 Mon Sep 17 00:00:00 2001 From: Ezri Brimhall Date: Thu, 14 Nov 2024 15:20:56 -0700 Subject: [PATCH] initial commit --- .python-version | 1 + pyproject.toml | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .python-version create mode 100644 pyproject.toml diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..f8c3120 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +voidshell diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a99f918 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,18 @@ +[tool.poetry] +name = "voidshell" +version = "0.1.0" +description = "Custom desktop shell for tiling, workspace-based compositors" +authors = ["Ezri "] +license = "GPLv3.0" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.12" + +[tool.poetry.group.dev.dependencies] +ipython = "^8.29.0" +black = "^24.10.0" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"