abibas/pyproject.toml

33 lines
728 B
TOML
Raw Normal View History

2023-06-14 19:21:37 +00:00
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "abibas"
authors = [
{name = "Taryel Hlontsi", email = "xhaaix@gmail.com"},
]
description = "Aviation lights simulator for Environmental Control (EC)"
readme = "README.rst"
requires-python = ">=3.11"
keywords = ["simulator", "MODBUS", "EC"]
license = {file = "LICENSE"}
classifiers = [
"Framework :: Flusk",
"Programming Language :: Python :: 3",
]
dependencies = [
"Flask",
"pyModbusTCP",
"prettytable",
]
version = "0.0.1"
urls = {homepage = "https://example.com"}
[tool.setuptools.package-data]
"*" = ["*.json"]
[project.scripts]
abibas = "main:run"
abibas-debug = "main:run_debug"