fsfwgen/pyproject.toml

45 lines
1.0 KiB
TOML
Raw Permalink Normal View History

2022-03-11 11:35:47 +01:00
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
2025-01-13 10:38:07 +01:00
name = "fsfwgen"
2025-01-13 10:33:26 +01:00
description = "FSFW Generator Core"
2025-01-13 10:40:41 +01:00
version = "0.3.4"
license = { text = "Apache-2.0" }
2025-01-13 10:33:26 +01:00
authors = [
{name = "Robin Mueller", email = "robin.mueller.m@gmail.com"}
]
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 = [
"colorlog~=6.0"
]
2025-01-13 10:40:41 +01:00
[project.urls]
"Homepage" = "https://egit.irs.uni-stuttgart.de/fsfw/fsfwgen"
[tool.ruff]
exclude = [
".git",
"venv",
"docs"
]
line-length = 100