-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (74 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
83 lines (74 loc) · 1.69 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[tool.poetry]
name = "can-explorer"
version = "0.0.1"
description = "CAN analysis tool for all platform"
authors = ["AKJ7 <akj123429@gmail.com>"]
license = "MIT"
readme = "README.md"
keywords = ['canbus', 'can', 'gui', 'analyze']
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
rust-just = "*"
PyQt6 = "~6.9"
pyinstaller = "*"
python-can = "*"
cantools = "*"
click = "*"
# aiofile = "*"
aiohttp = "*"
matplotlib = "*"
numpy = "*"
schema = "*"
qasync = "*"
qtrio = "*"
pydantic = "*"
pydantic-settings = "*"
poetry-plugin-dotenv = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
mypy = "*"
pre-commit = "*"
# reportlab = "*"
docutils = "*"
ruff = "*"
[tool.poetry.group.test.dependencies]
pytest = "*"
pytest-asyncio = "*"
pytest-schema = "*"
pytest-qt = "*"
pytest-mock = "*"
hypothesis = "*"
[tool.poetry.scripts]
main = "can_explorer.__main__:main"
[tool.pytest.ini_options]
minversion = "6.0"
log_cli = "True"
log_cli_level = "INFO"
log_cli_format = "%(asctime)s.%(msecs)03d [%(levelname)s] %(message)s"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
python_files = "test_*.py"
python_functions = "test_*"
testpaths = "tests"
asyncio_mode = "auto"
#[tool.poetry.plugins.dotenv]
#[tool.pylint]
#disable = C0111, C0114, C0115, C0116б, W1203, missing-module-docstring, missing-class-docstring, disable=missing-function-docstring
#
[tool.black]
line-length = 120
include = ".pyi?$"
#exclude = .git
# | \.hg
# | \.mypy_cache
# | \.tox
# | \.venv
# | _build
# | buck-out
# | build
# | dist
skip-string-normalization = true
#[options.entry_points]
#console_scripts =
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"