forked from TencentBlueKing/bk-plugin-framework-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 789 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (38 loc) · 789 Bytes
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
[tool.poetry]
name = "bk-plugin-framework"
version = "2.3.5"
description = "bk plugin python framework"
authors = ["Your Name <you@example.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8.0,<4.0"
pydantic = ">=1.0,<3"
werkzeug = ">=2.0.0, <4.0"
apigw-manager = {version = ">=1.0.6, <4", extras = ["extra"]}
bk-plugin-runtime = "2.1.3"
jsonschema = ">=2.5.0,<5.0.0"
drf-spectacular = "^0.29.0"
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
black = "^20.8b1"
pytest-django = "^4.5.2"
coverage = "^6.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''