-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 940 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
37
38
39
40
41
42
[tool.poetry]
name = "vault-informer"
version = "0.5.0"
description = "Inform other systems that a Vault secret has been updated"
authors = ["Simon Lundström <[email protected]>"]
license = "BSD-3-Clause"
include = [{ path = "vault_informer" }]
[tool.poetry.dependencies]
python = ">=3.5.2"
pyinotify = "^0.9.6"
[tool.poetry.dev-dependencies]
isort = "^4.3.21"
pylint = "^2.6.2"
[tool.poetry.scripts]
informer = 'vault_informer.informer:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "su"
url = "https://maven.it.su.se/repository/su-pypi-group/simple"
[tool.pylint]
[tool.pylint.master]
disable= [
'missing-docstring',
'invalid-name',
'consider-using-f-string',
'broad-except',
'too-many-instance-attributes',
'too-many-arguments',
'line-too-long',
'no-member',
'consider-using-with',
]
output-format = 'parseable'