mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 00:02:03 +00:00
41 lines
728 B
TOML
41 lines
728 B
TOML
[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"
|