Apply .gitattributes normalization to convert all CRLF line endings inherited from Windows-origin source files to Unix LF. 175 files, zero content changes.
39 lines
764 B
TOML
39 lines
764 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"]
|
|
artifacts = ["src/skywalker_tui/assets/**"]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"Pillow>=10.0",
|
|
]
|
|
test = [
|
|
"pytest>=8.0",
|
|
"pytest-asyncio>=0.24",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
asyncio_mode = "auto"
|
|
|
|
[tool.ruff]
|
|
target-version = "py311"
|
|
line-length = 100
|