-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
61 lines (51 loc) · 1.14 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
[tool.poetry]
name = "netdevops-survey"
version = "0.1.0"
description = ""
authors = ["Damien Garros <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7"
sqlalchemy = "^1.3.20"
pyyaml = "^5.3.1"
pygal = "^2.4.0"
pandas = "^1.1.4"
cairosvg = "^2.5.0"
click = "^7.1.2"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
[tool.poetry.scripts]
netdevops-survey = 'netdevops_survey.cli:main'
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.tox
| \.venv
| env/
| _build
| build
| dist
)/
'''
[tool.pylint.messages_control]
# Line length is enforced by Black, so pylint doesn't need to check it.
# Pylint and Black disagree about how to format multi-line arrays; Black wins.
disable = """,
line-too-long,
bad-continuation,
"""
[tool.pylint.miscellaneous]
# Don't flag TODO as a failure, let us commit with things that still need to be done in the code
notes = """,
FIXME,
XXX,
"""
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"