-
Notifications
You must be signed in to change notification settings - Fork 49
/
pyproject.toml
49 lines (39 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
43
44
45
46
47
48
49
[tool.poetry]
name = "pychaosvm"
version = "0.4.1"
description = "A Python envirionment for Tencent ChaosVM."
authors = ["aioqzone <[email protected]>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
packages = [{ include = "chaosvm", from = "src" }]
[tool.poetry.dependencies]
python = "^3.8"
pyjsparser = "^2.7.1"
typing-extensions = ">=4.6.0"
lxml = "^5.3.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "*"
pre-commit = "*"
isort = "!=5.13.0"
types-lxml = "^2024.2.9"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# customize begin
[tool.pytest.ini_options]
pythonpath = 'src'
# log_cli = 1
# log_cli_level = 'WARNING'
[tool.isort]
profile = "black"
line_length = 99
[tool.black]
line-length = 99
target-version = ['py38']
[tool.pyright]
pythonVersion = "3.8"
pythonPlatform = "All"