| 1234567891011121314151617181920212223242526272829 |
- [build-system]
- requires = ["setuptools>=61.0", "wheel"]
- build-backend = "setuptools.build_meta"
- [project]
- name = "boilerplates"
- version = "0.0.2"
- description = "CLI tool for managing infrastructure boilerplates"
- readme = "README.md"
- requires-python = ">=3.9"
- license = {text = "MIT"}
- authors = [ {name = "Christian Lempa"} ]
- keywords = ["boilerplates", "cli", "infrastructure"]
- classifiers = [
- "Programming Language :: Python :: 3",
- "License :: OSI Approved :: MIT License",
- "Operating System :: OS Independent",
- ]
- dependencies = [
- "typer[all]>=0.9.0",
- "rich>=13.0.0",
- "PyYAML>=6.0",
- "python-frontmatter>=1.0.0",
- "Jinja2>=3.0",
- ]
- [project.scripts]
- boilerplates = "cli.__main__:run"
|