Initial commit of wif2ansible

This commit is contained in:
2026-02-06 15:12:49 -05:00
commit aa299df41e
13 changed files with 1025 additions and 0 deletions

28
pyproject.toml Normal file
View File

@@ -0,0 +1,28 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "wif2ansible"
version = "0.1.0"
description = "Convert WIF Excel documents to Ansible Inventory"
authors = [
{ name="System Admin", email="admin@example.com" },
]
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"openpyxl",
"pyyaml",
]
[project.scripts]
wif2ansible = "wif2ansible.main:main"
[tool.setuptools.packages.find]
where = ["."]