aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: d81b3e1394d9d9650f82d9b18a04acea6f26d207 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[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 = [
    "pygame>=2.6.1",
    "pyserial>=3.5",
]
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"]