-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (68 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
78 lines (68 loc) · 1.9 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
[tool.poetry]
name = "zamp-sdk"
version = "0.0.7"
description = "Customer-facing SDK for executing actions on the Zamp platform"
authors = ["Zamp Engineering <engineering@zamp.com>"]
readme = "README.md"
packages = [{include = "zamp_sdk"}]
license = "MIT"
keywords = ["zamp", "sdk", "actions", "automation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
"Framework :: AsyncIO",
]
[tool.poetry.urls]
Homepage = "https://github.com/Zampfi/zamp-sdk"
Documentation = "https://github.com/Zampfi/zamp-sdk#readme"
Repository = "https://github.com/Zampfi/zamp-sdk"
Issues = "https://github.com/Zampfi/zamp-sdk/issues"
Changelog = "https://github.com/Zampfi/zamp-sdk/releases"
[tool.poetry.dependencies]
python = "^3.12"
aiohttp = "*"
pydantic = "*"
structlog = "*"
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-asyncio = "*"
pytest-cov = "*"
ruff = "*"
mypy = "*"
pre-commit = "*"
diff-cover = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.12"
warn_return_any = false
warn_unused_configs = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
check_untyped_defs = false
show_error_codes = true
show_column_numbers = true
show_error_context = true
pretty = true
[[tool.mypy.overrides]]
module = "zamp_public_workflow_sdk.*"
ignore_missing_imports = true
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["zamp_sdk", "tests"]
addopts = "--cov=zamp_sdk --cov-report=xml --cov-report=term-missing --cov-fail-under=80"
[tool.coverage.run]
relative_files = true
source = ["zamp_sdk"]
omit = ["*/tests/*"]