python/{{ cookiecutter.project_name }}/pyproject.toml

43 lines
1.2 KiB
TOML
Raw Normal View History

2023-03-24 18:46:12 +01:00
[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"
[histausse@grace-hopper {{ cookiecutter.project_name }}]$ cat ../../pyproject.toml
[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]
analyse_artifact = "{{ cookiecutter.project_slug }}.cli:main"