forked from gavinying/modpoll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 821 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "modpoll"
version = "0.5.1"
description = "A New Command Line Tool for Modbus"
authors = ["Ying Shaodong <[email protected]>"]
readme = "README.md"
homepage = "https://helloysd.gitlab.io/modpoll"
repository = "https://github.com/gavinying/modpoll"
license = "MIT"
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.8"
importlib-metadata = {version = "^1.0", python = "<3.8"}
pymodbus = "^3.0.2"
paho-mqtt = "^1.6.1"
prettytable = "^3.6.0"
requests = "^2.28.1"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
bandit = "^1.7.4"
safety = "^2.3.0"
sphinx = "^4.2.0"
sphinx-argparse = "^0.3.1"
sphinx-rtd-theme = "^1.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
modpoll = "modpoll:app"