40 lines
821 B
TOML
40 lines
821 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ais_hub"
|
|
version = "0.1.0"
|
|
description = "Central AIS/GPS/radio telemetry aggregation service for embedded Linux."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = { text = "Proprietary" }
|
|
authors = [{ name = "AisHub" }]
|
|
dependencies = [
|
|
"aiohttp>=3.9,<4",
|
|
"pyais>=2.6,<3",
|
|
"pyserial-asyncio>=0.6,<1",
|
|
"aiosqlite>=0.19,<1",
|
|
"PyYAML>=6,<7",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8",
|
|
"pytest-asyncio>=0.23",
|
|
"pytest-cov>=4",
|
|
]
|
|
|
|
[project.scripts]
|
|
ais_hub = "ais_hub.__main__:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
ais_hub = ["py.typed"]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|