Set required python version as 3.10
This commit is contained in:
parent
79bb632fc5
commit
b2e665fcbd
|
@ -1,12 +1,12 @@
|
||||||
Purpose
|
Purpose
|
||||||
=======
|
=======
|
||||||
This is a simple helper tool designed specificaly for one enterprise app,
|
This is a simple helper tool designed specifically for one enterprise app,
|
||||||
which in turn controlls flashing lights on the wind turbines for aviation safety.
|
which in turn controls flashing lights on the wind turbines for aviation safety.
|
||||||
|
|
||||||
This tool simulates interaction with the light controllers via MODBUS protocol over TCP/IP and additionaly provides a simple UI for configuration and monitoring.
|
This tool simulates interaction with the light controllers via MODBUS protocol over TCP/IP and additionally provides a simple UI for configuration and monitoring.
|
||||||
UI is built using **Flask**, simulator - using the **pyModbusTCP** package
|
UI is built using **Flask**, simulator - using the **pyModbusTCP** package
|
||||||
|
|
||||||
Requires **python3.11** and above
|
Requires **python3.10** and above
|
||||||
|
|
||||||
Licensed under **GPLv3** license
|
Licensed under **GPLv3** license
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ authors = [
|
||||||
]
|
]
|
||||||
description = "Aviation lights simulator for Environmental Control (EC)"
|
description = "Aviation lights simulator for Environmental Control (EC)"
|
||||||
readme = "README.rst"
|
readme = "README.rst"
|
||||||
requires-python = ">=3.11"
|
requires-python = ">=3.10"
|
||||||
keywords = ["simulator", "MODBUS", "EC"]
|
keywords = ["simulator", "MODBUS", "EC"]
|
||||||
license = {file = "LICENSE"}
|
license = {file = "LICENSE"}
|
||||||
classifiers = [
|
classifiers = [
|
||||||
|
@ -22,7 +22,7 @@ dependencies = [
|
||||||
"prettytable",
|
"prettytable",
|
||||||
]
|
]
|
||||||
version = "0.0.1"
|
version = "0.0.1"
|
||||||
urls = {homepage = "https://example.com"}
|
urls = {homepage = "https://gittar.crabdance.com/e-corp/abibas"}
|
||||||
|
|
||||||
[tool.setuptools.package-data]
|
[tool.setuptools.package-data]
|
||||||
"*" = ["*.json"]
|
"*" = ["*.json"]
|
||||||
|
|
Loading…
Reference in New Issue