39 lines
1.0 KiB
TOML
39 lines
1.0 KiB
TOML
[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 = "DESCRIPTION.rst"
|
|
requires-python = ">=3.10"
|
|
keywords = ["simulator", "MODBUS", "EC"]
|
|
license = {file = "LICENSE"}
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
"Intended Audience :: Developers",
|
|
"Framework :: Flask",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
]
|
|
dependencies = [
|
|
"Flask",
|
|
"pyModbusTCP",
|
|
"prettytable",
|
|
"plotext",
|
|
]
|
|
version = "0.0.1"
|
|
urls = {homepage = "https://gittar.crabdance.com/e-corp/abibas"}
|
|
|
|
[tool.setuptools.package-data]
|
|
"*" = ["*.json"]
|
|
|
|
[project.scripts]
|
|
abibas = "main:run"
|
|
abibas-debug = "main:run_debug"
|