abibas/pyproject.toml

39 lines
1.0 KiB
TOML
Raw Permalink 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)"
2023-06-17 09:50:27 +00:00
readme = "DESCRIPTION.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 = [
2023-06-17 09:50:27 +00:00
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Intended Audience :: Developers",
"Framework :: Flask",
2023-06-14 19:21:37 +00:00
"Programming Language :: Python :: 3",
2023-06-17 09:50:27 +00:00
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
2023-06-14 19:21:37 +00:00
]
dependencies = [
"Flask",
"pyModbusTCP",
"prettytable",
"plotext",
2023-06-14 19:21:37 +00:00
]
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"