[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "{{ cookiecutter.project_slug }}" version = "{{ cookiecutter.version }}" authors = [ { name="{{ cookiecutter.full_name }}", email="{{ cookiecutter.email }}" }, ] description = "{{ cookiecutter.project_short_description }}" readme = "README.md" requires-python = ">={{ cookiecutter.python_min_version }}" dependencies = [] [project.urls] "Homepage" = "{{ cookiecutter.project_url }}" "Bug Tracker" = "{{ cookiecutter.project_url }}/issues" [project.scripts] {{ cookiecutter.project_slug }} = "{{ cookiecutter.project_slug }}.cli:main"