-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.27 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
[project]
name = "ansible-waldur-generator"
version = "0.0.1"
description = "Ansible Waldur module generator."
readme = "README.md"
authors = [{ name = "OpenNode Team", email = "info@opennodecloud.com" }]
license = { text = "MIT" }
requires-python = ">=3.11"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pyyaml>=6.0",
"ansible>=11.8.0",
"ruff>=0.12.8",
"pydantic>=2.5.3",
"pytest-vcr>=1.0.2",
]
[project.scripts]
ansible-waldur-generator = "ansible_waldur_generator.cli:main"
[project.entry-points."ansible_waldur_generator"]
crud = "ansible_waldur_generator.plugins.crud.plugin:CrudPlugin"
facts = "ansible_waldur_generator.plugins.facts.plugin:FactsPlugin"
order = "ansible_waldur_generator.plugins.order.plugin:OrderPlugin"
actions = "ansible_waldur_generator.plugins.actions.plugin:ActionsPlugin"
link = "ansible_waldur_generator.plugins.link.plugin:LinkPlugin"
[dependency-groups]
dev = [
"pytest>=7.2.0",
"pytest-cov>=4.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
pythonpath = [
".",
"outputs"
]
testpaths = [
"tests",
]