27 lines
583 B
TOML
27 lines
583 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "opssat-tmtc"
|
|
description = "Python TMTC client for OPS-SAT"
|
|
readme = "README.md"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.8"
|
|
authors = [
|
|
{name = "Robin Mueller", email = "robin.mueller.m@gmail.com"},
|
|
{name = "Linus Köster", email = "st167799@stud.uni-stuttgart.de"}
|
|
]
|
|
dependencies = [
|
|
"tmtccmd==8.0.0rc.2",
|
|
"serde==0.9.0"
|
|
]
|
|
|
|
[tool.setuptools.packages]
|
|
find = {}
|
|
|
|
[tool.ruff.lint]
|
|
ignore = ["E501"]
|
|
[tool.ruff.lint.extend-per-file-ignores]
|
|
"__init__.py" = ["F401"]
|