-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
50 lines (43 loc) · 1.2 KB
/
pyproject.toml
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
[tool.poetry]
name = "arcaflow-plugin-sdk"
# Do not change, the version is automatically updated in CI.
version = "0.0.0"
description = "Plugin SDK for Python for the Arcaflow workflow engine"
authors = ["Arcalot Contributors"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "arcaflow_plugin_sdk", from = "src"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
homepage = "https://github.com/arcalot/arcaflow-plugin-sdk-python"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/arcalot/arcaflow-plugin-sdk-python/issues"
[tool.poetry.dependencies]
python = "^3.9"
cbor2 = "~5.6.0"
PyYAML = "~6.0.1"
[tool.poetry.group.dev.dependencies]
coverage = "^7.0.0"
html2text = "^2024.0.0"
pre-commit = "^3.0.0"
sphinx = "^7.0.0"
sphinx-rtd-theme = "^2.0.0"
isort = "^5.12.0"
black = "^24.0.0"
autoflake = "^2.2.1"
docformatter = "^1.7.5"
flake8 = "^7.0.0"
autopep8 = "^2.0.4"
pytest-repeat = "^0.9.3"
[tool.isort]
profile = 'black'
[tool.docformatter]
recursive = true
wrap-summaries = 79
wrap-descriptions = 79
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"