2023-02-23 15:13:35 +01:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools>=61.0"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "eive-tmtc"
|
|
|
|
description = "TMTC Commander EIVE"
|
|
|
|
readme = "README.md"
|
2024-01-30 09:17:31 +01:00
|
|
|
version = "5.13.0"
|
2023-02-23 15:13:35 +01:00
|
|
|
requires-python = ">=3.10"
|
|
|
|
license = {text = "Apache-2.0"}
|
|
|
|
authors = [
|
|
|
|
{name = "Robin Mueller", email = "muellerr@irs.uni-stuttgart.de"},
|
|
|
|
{name = "Jakob Meier", email = "meierj@irs.uni-stuttgart.de"},
|
|
|
|
]
|
|
|
|
keywords = ["eive", "space", "communication", "commanding"]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"License :: OSI Approved :: Apache Software License",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Operating System :: Microsoft :: Windows",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Topic :: Communications",
|
|
|
|
"Topic :: Software Development :: Libraries",
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
"Topic :: Scientific/Engineering"
|
|
|
|
]
|
|
|
|
dependencies = [
|
2023-11-10 19:23:06 +01:00
|
|
|
"tmtccmd ~= 7.0",
|
2023-02-23 15:13:35 +01:00
|
|
|
"python-dateutil ~= 2.8",
|
2023-09-14 11:26:57 +02:00
|
|
|
# "tmtccmd @ git+https://github.com/robamu-org/tmtccmd@main"
|
2023-02-23 15:13:35 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
"Homepage" = "https://egit.irs.uni-stuttgart.de/eive/eive-tmtc"
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
include-package-data = true
|
|
|
|
|
|
|
|
# Auto-Discovery is problematic for some reason, so use custom-discovery
|
|
|
|
[tool.setuptools.packages]
|
|
|
|
find = {}
|
2023-09-14 12:09:50 +02:00
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
ignore = ["E501"]
|
|
|
|
[tool.ruff.extend-per-file-ignores]
|
|
|
|
"__init__.py" = ["F401"]
|