-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
68 lines (58 loc) · 1.06 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
64
65
66
67
68
[project]
name="draft"
version="0.0.1"
requires-python = ">=3.11"
readme = "README.md"
license = {file = "LICENSE.md"}
dependencies=[
"ansible",
"Click",
"click-pathlib",
"websockets",
"uvicorn",
"fastapi",
"psutil",
"types-psutil",
"loguru",
"pydantic_settings",
"python-multipart",
"mnemonic",
"pyre-check",
"isort",
"pylint",
"pylint[spelling]",
"pre-commit",
"cryptography",
"httpx",
"pytest",
"pytest-cov",
]
[project.scripts]
draft = "sidecar.cli.cli:cli"
[tool.setuptools]
py-modules = ["sidecar",]
[tool.isort]
profile = "black"
py_version=39
skip_glob=["server"]
extra_standard_library = ["tomllib"]
[tool.pylint.format]
max-line-length = "88"
[tool.pylint.messages_control]
disable = [
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"broad-exception-raised",
# "R0913",
]
[tool.pylint.main]
source-roots = ["sidecar"]
[tool.black]
target-version = ["py311", ]
include = '\.pyi?$'
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = "sidecar"