-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (59 loc) · 1.77 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
[tool.poetry]
name = "andebox"
version = "0.75"
description = "Ansible Developers Box"
authors = ["Alexei Znamensky <russoz@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/russoz-ansible/andebox"
repository = "https://github.com/russoz-ansible/andebox"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: Ansible",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
"Topic :: Utilities"
]
keywords = [ "ansible", "tox", "vagrant" ]
packages = [
{ include = "andeboxlib" }
]
[tool.poetry.scripts]
andebox = "andeboxlib.cli:run"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/russoz-ansible/andebox/issues"
"Source Code" = "https://github.com/russoz-ansible/andebox"
[tool.poetry.dependencies]
python = "^3.11"
ansible-core = [
{ version = "^2.17.4", python = ">=3.12" },
{ version = "^2.15.0", python = ">=3.11,<3.12" },
]
pyyaml = ">=5.4"
python-vagrant = "^1.0.0"
fabric = "^3.1.0"
looseversion = "^1.2.0"
tox = "^4.5.2"
virtualenv-pyenv = "*"
bump2version = "^1.0.1"
ruamel-yaml = "^0.18.6"
argcomplete = "^3.5.3"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.3.1,<9.0.0"
pytest-mock = "^3.10.0"
pylint = ">=2.17.4,<4.0.0"
flake8 = ">=6,<8"
gitpython = ">=3.1.44"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"