abibas/pyproject.toml

33 lines
751 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"
2023-06-16 05:45:51 +00:00
requires-python = ">=3.10"
2023-06-14 19:21:37 +00:00
keywords = ["simulator", "MODBUS", "EC"]
license = {file = "LICENSE"}
classifiers = [
"Framework :: Flusk",
"Programming Language :: Python :: 3",
]
dependencies = [
"Flask",
"pyModbusTCP",
"prettytable",
]
version = "0.0.1"
2023-06-16 05:45:51 +00:00
urls = {homepage = "https://gittar.crabdance.com/e-corp/abibas"}
2023-06-14 19:21:37 +00:00
[tool.setuptools.package-data]
"*" = ["*.json"]
[project.scripts]
abibas = "main:run"
abibas-debug = "main:run_debug"