Change setup.cfg to pyproject.toml
This commit is contained in:
parent
e7079c2e17
commit
2317b52dab
3 changed files with 21 additions and 25 deletions
21
{{cookiecutter.package_name}}/pyproject.toml
Normal file
21
{{cookiecutter.package_name}}/pyproject.toml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue