29 lines
619 B
TOML
29 lines
619 B
TOML
[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 = ["."]
|