-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.11 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
[tool.poetry]
name = "understand-sdk"
version = "0.1.9"
description = "Python client for UnderstandLabs"
authors = ["Understandlabs.com Team <it@understandlabs.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "understand_sdk"}]
[tool.poetry.dependencies]
python = ">=3.9"
requests = "^2.31.0"
pydantic = "^2.6.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
mypy = "^1.8.0"
syrupy = "^4.6.1"
types-requests = "^2.31.0.20240218"
black = "^23.12.1"
pyproject-flake8 = "^6.0.1"
isort = "^5.13.2"
bandit = "^1.7.6"
safety = "^2.3.5"
autoflake = "^2.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
plugins = [
"pydantic.mypy"
]
[tool.black]
line-length = 120
target_version = ['py310']
[tool.isort]
line_length = 120
include_trailing_comma = true
multi_line_output = 3
use_parentheses = true
balanced_wrapping = "1"
force_grid_wrap = "0"
default_section = "THIRDPARTY"
known_first_party = "ul"
known_third_party = "tests"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
[tool.flake8]
max-line-length = 120
exclude = [
".venv/"
]