-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (37 loc) · 1.02 KB
/
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
37
38
39
40
41
42
43
[tool.black]
line-length = 120
target-version = ['py38']
[tool.isort]
profile = "black"
[tool.poetry]
name = "atenpdu"
version = "0.6.3"
description = "Interface for ATEN-PE PDUs"
authors = ["Andreas Oberritter <obi@saftware.de>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mtdcr/pductl"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = "^3.8.1"
async-timeout = "^4.0.2"
pysnmp = "^6.2.5"
[tool.poetry.scripts]
pductl = "atenpdu.pductl:run"
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.4"
mypy = "^0.991"
flake8 = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"