pyproject.toml 717 B

1234567891011121314151617181920212223242526272829
  1. [build-system]
  2. requires = ["setuptools>=61.0", "wheel"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "boilerplates"
  6. version = "0.0.2"
  7. description = "CLI tool for managing infrastructure boilerplates"
  8. readme = "README.md"
  9. requires-python = ">=3.9"
  10. license = {text = "MIT"}
  11. authors = [ {name = "Christian Lempa"} ]
  12. keywords = ["boilerplates", "cli", "infrastructure"]
  13. classifiers = [
  14. "Programming Language :: Python :: 3",
  15. "License :: OSI Approved :: MIT License",
  16. "Operating System :: OS Independent",
  17. ]
  18. dependencies = [
  19. "typer[all]>=0.9.0",
  20. "rich>=13.0.0",
  21. "PyYAML>=6.0",
  22. "python-frontmatter>=1.0.0",
  23. "Jinja2>=3.0",
  24. ]
  25. [project.scripts]
  26. boilerplates = "cli.__main__:run"