setup.cfg 486 B

1234567891011121314151617181920212223
  1. [metadata]
  2. name = boilerplates
  3. version = 1.0.0
  4. description = CLI tool for managing infrastructure boilerplates
  5. long_description = file: README.md
  6. license_file = LICENSE
  7. author = Christian Lempa
  8. author_email =
  9. python_requires = >=3.9
  10. [options]
  11. packages = find:
  12. include_package_data = True
  13. install_requires =
  14. typer[all]>=0.9.0
  15. rich>=13.0.0
  16. PyYAML>=6.0
  17. python-frontmatter>=1.0.0
  18. Jinja2>=3.0
  19. [options.entry_points]
  20. console_scripts =
  21. boilerplate = cli.__main__:run