-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
41 lines (34 loc) · 990 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
[project]
name = "acme-ca-server"
description = "ACME CA Server"
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["dependencies"]
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://github.com/knrdl/acme-ca-server"
Documentation = "https://github.com/knrdl/acme-ca-server"
Repository = "https://github.com/knrdl/acme-ca-server.git"
Issues = "https://github.com/knrdl/acme-ca-server/issues"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.pylint]
max-line-length = 179
recursive = 'yes'
disable = 'too-many-branches,no-else-return,broad-exception-caught,missing-module-docstring,missing-class-docstring,missing-function-docstring'
[tool.pytest.ini_options]
pythonpath = "app"
testpaths = [
"tests/pytest/",
]
addopts = [
"--import-mode=importlib",
]
[tool.ruff]
line-length = 179
[tool.ruff.format]
quote-style = "single"