-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (49 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
[tool.poetry]
name = "sucm"
version = "0.9.3"
description = "SSL certificate manager with web GUI"
authors = ["Rasmus Thorslund <[email protected]>"]
readme = "README.md"
include = [{ path = "sucm" }, "sucm_app.py"]
[tool.poetry.dependencies]
python = "^3.9"
mysql-connector-python = "*"
datetime = "*"
configparser = "*"
cryptography = "*"
flask = "*"
hvac = "*"
acme = "*"
flask-SSO = "*"
josepy = "*"
pyopenssl = "*"
apscheduler = "*"
[tool.poetry.dev-dependencies]
isort = "^5.12.0"
pylint = "^3.0.0"
black = "^23.9.1"
[tool.poetry.scripts]
sucm_app = "sucm_app:main"
[build-system]
requires = ["poetry-core"]
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',
'broad-exception-caught',
'missing-function-docstring',
'bare-except',
'import-error',
'line-too-long',
'too-many-locals',
'too-many-instance-attributes',
'too-many-public-methods',
'relative-beyond-top-level',
'invalid-name',
'attribute-defined-outside-init',
]
output-format = 'parseable'