-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
92 lines (82 loc) · 2.51 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "workflows-manager"
dynamic = ["version"]
dependencies = [
"PyYaml==6.0.2",
]
requires-python = ">=3.9"
authors = [
{name = "Dmytro Leshchenko", email = "dima.leschenko1998@gmail.com"},
]
maintainers = [
{name = "Dmytro Leshchenko", email = "dima.leschenko1998@gmail.com"},
]
description = "Python CLI application that allows to run custom workflows."
readme = "README.md"
license = "MIT"
keywords = ["workflow", "workflows", "manager", "workflows-manager", "pipeline", "pipelines", "action", "step"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: System",
"Topic :: Utilities",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Other Audience",
"Intended Audience :: System Administrators",
"Typing :: Typed",
]
[project.urls]
Documentation = "https://dl1998.github.io/workflows-manager"
Repository = "https://github.com/dl1998/workflows-manager.git"
Issues = "https://github.com/dl1998/workflows-manager/issues"
[project.scripts]
workflows-manager = "workflows_manager.main:main_cli"
[tool.hatch.version]
path = "src/workflows_manager/__version__.py"
[tool.hatch.envs.test]
dependencies = [
"PyYaml==6.0.2",
"pytest==8.3.3",
"coverage==7.6.4",
"behave==1.2.6",
"junitparser==3.2.0"
]
[tool.hatch.envs.test.scripts]
unit-tests = "coverage run --source=\"src\" -m pytest tests/workflows_manager/unit_tests"
[[tool.hatch.envs.test.matrix]]
python = ["3.9", "3.10", "3.11", "3.12", "3.13"]
[tool.hatch.envs.docs]
dependencies = [
"mkdocs==1.6.1",
"mkdocstrings==0.26.2",
"mkdocstrings-python==1.12.2",
"mkdocs-material==9.5.43",
"docutils==0.21.2",
"mike==2.1.3",
"mkdocs-glightbox==0.4.0",
"mkdocs-markdownextradata-plugin==0.2.6",
"mkdocs-autorefs==1.2.0",
"mkdocs-build-plantuml-plugin==1.11.0",
]
[tool.hatch.build.targets.sdist]
include = [
"src/workflows_manager/**/*"
]
[tool.hatch.build.targets.wheel]
packages = [
"src/workflows_manager"
]