This commit is contained in:
Ruben Fiszel
2024-01-16 23:46:36 +01:00
parent 640ebcb146
commit f782e009cd
1696 changed files with 160145 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
[tool.poetry]
name = "windmill-api"
version = "1.245.0"
description = "A client library for accessing Windmill API"
license = "Apache-2.0"
authors = ["Ruben Fiszel <ruben@windmill.dev>"]
readme = "README.md"
packages = [
{include = "windmill_api"},
]
include = ["CHANGELOG.md", "windmill_api/py.typed"]
[tool.poetry.dependencies]
python = "^3.8"
httpx = ">=0.20.0,<0.25.0"
attrs = ">=21.3.0"
python-dateutil = "^2.8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target_version = ['py38', 'py39', 'py310', 'py311']
exclude = '''
(
/(
| \.git
| \.venv
| \.mypy_cache
)/
)
'''
[tool.isort]
line_length = 120
profile = "black"