25 lines
552 B
TOML
25 lines
552 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["hatchling"]
|
||
|
|
build-backend = "hatchling.build"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "skywalker-tui"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Textual TUI for Genpix SkyWalker-1 DVB-S receiver"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
authors = [{name = "Ryan Malloy", email = "ryan@supported.systems"}]
|
||
|
|
dependencies = [
|
||
|
|
"textual>=3.0",
|
||
|
|
"pyusb>=1.3",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
skywalker-tui = "skywalker_tui.app:main"
|
||
|
|
|
||
|
|
[tool.hatch.build.targets.wheel]
|
||
|
|
packages = ["src/skywalker_tui"]
|
||
|
|
|
||
|
|
[tool.ruff]
|
||
|
|
target-version = "py311"
|
||
|
|
line-length = 100
|