forked from minitriga/axians-netbox-plugin-pdu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (56 loc) · 1.37 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "axians-netbox-plugin-pdu"
version = "0.0.4"
description = "A plugin for NetBox to easily display PDU information."
authors = ["Alexander Gittings <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/minitriga/axians-netbox-plugin-pdu"
repository = "https://github.com/minitriga/axians-netbox-plugin-pdu"
keywords = ["netbox", "network", "pdu", "django", "apc"]
include = [
"LICENSE",
"README.md"
]
packages = [
{ include = "axians_netbox_pdu" },
]
[tool.poetry.dependencies]
python = "^3.6 || ^3.7 || ^3.8"
invoke = "^1.4.1"
easysnmp = "^0.2.5"
rq-scheduler = "^0.13.1"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
yamllint = "^1.23.0"
bandit = "^1.6.2"
pylint = "^2.5.2"
pylint-django = "^2.0.15"
pydocstyle = "^5.0.2"
easysnmp = "^0.2.5"
rq-scheduler = "^0.13.1"
[tool.black]
line-length = 120
target-version = ['py36']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| settings.py # This is where you define files that should not be stylized by black
# the root of the project
)
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"