-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (57 loc) · 1.22 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
60
61
62
63
[tool.poetry]
name = "fortiwlc_exporter"
version = "2.3.0"
description = "Prometheus exporter for FortiOS WLC"
readme = "README.md"
authors = [
"Luka Vadnjal <[email protected]>",
"Matej Vadnjal <[email protected]>",
]
license = "MIT"
repository = "https://git.arnes.si/monitoring/fortiwlc_exporter"
classifiers = [
"Topic :: System :: Monitoring"
]
[tool.poetry.scripts]
fortiwlc_exporter = 'fortiwlc_exporter.exporter:main'
[[tool.poetry.source]]
name = "arnes_pypi"
url = "https://zelenjak.arnes.si/nexus/repository/ArnesGroupPyPI/simple"
[tool.poetry.dependencies]
python = "^3.4"
prometheus-client = "^0.6.0"
requests = "^2.21"
pyyaml = "^5.1"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
pytest-cov = "^2.6"
flake8 = "*"
black = {version = "*", python = "^3.6", allows-prereleases = true}
responses = "^0.10.6"
pylint = "^2.3"
pyinstaller = "^3.4"
bumpversion = "^0.5.3"
coverage = "^4.5"
pydocstyle = "^3.0"
[tool.black]
line-length = 88
skip-string-normalization = true
py36 = true
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"