Change setup.cfg to pyproject.toml

This commit is contained in:
Alexander Wainwright 2024-05-20 18:53:58 +10:00
parent e7079c2e17
commit 2317b52dab
3 changed files with 21 additions and 25 deletions

View file

@ -0,0 +1,21 @@
[project]
name = "{{ cookiecutter.package_name }}"
version = "{{ cookiecutter.package_version }}"
description = "{{ cookiecutter.package_description }}"
requires-python = ">=3.10"
authors = [
{name = "{{ cookiecutter.author_name }}", email = "{{ cookiecutter.author_email }}"},
]
maintainers = [
{name = "{{ cookiecutter.author_name }}", email = "{{ cookiecutter.author_email }}"},
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.scripts]
{{ cookiecutter.package_name }} = "{{ cookiecutter.package_name }}.main:main"