aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml29
1 files changed, 29 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..1528345
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,29 @@
+[project]
+name = "splitscreen-duo"
+version = "0.1.0"
+description = "The Dual Screen Console"
+authors = [
+ { name = "Abdullah Havaldar ", email = "[email protected]" },
+ { name = "Musa Ahmed", email = "[email protected]" },
+ { name = "Zoltan Szabatin", email = "[email protected]" },
+]
+dependencies = []
+readme = "README.md"
+requires-python = ">= 3.8"
+
+[project.scripts]
+"splitscreen_duo" = "splitscreen_duo:main"
+
+[build-system]
+requires = ["hatchling"]
+build-backend = "hatchling.build"
+
+[tool.rye]
+managed = true
+dev-dependencies = []
+
+[tool.hatch.metadata]
+allow-direct-references = true
+
+[tool.hatch.build.targets.wheel]
+packages = ["src/splitscreen_duo"]