Skip to content

Commit

Permalink
re-order pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
rixx committed Nov 2, 2023
1 parent 895d1c0 commit b917332
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions {{cookiecutter.repo_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,24 @@ readme = "README.rst"
license = {text = "Apache Software License"}
keywords = ["pretalx"]
authors = [
{name = "{{cookiecutter.author_name}}", email = "{{cookiecutter.author_email}}"},
{name = "{{cookiecutter.author_name}}", email = "{{cookiecutter.author_email}}"},
]
maintainers = [
{name = "{{cookiecutter.author_name}}", email = "{{cookiecutter.author_email}}"},
{name = "{{cookiecutter.author_name}}", email = "{{cookiecutter.author_email}}"},
]

dependencies = [
]
dependencies = []

[project.urls]
homepage = "{{cookiecutter.repo_url}}"
repository = "{{cookiecutter.repo_url}}.git"

[project.entry-points."pretalx.plugin"]
{{cookiecutter.module_name}} = "{{cookiecutter.module_name}}:PretalxPluginMeta"

[build-system]
requires = [
"setuptools",
]

[project.urls]
homepage = "{{cookiecutter.repo_url}}"
repository = "{{cookiecutter.repo_url}}.git"
build-backend = "setuptools.build_meta"
requires = ["setuptools"]

[tool.setuptools]
include-package-data = true
Expand All @@ -35,3 +33,6 @@ version = {attr = "{{cookiecutter.module_name}}.__version__"}

[tool.setuptools.packages.find]
include = ["pretalx*"]

[tool.check-manifest]
ignore = [".*"]

0 comments on commit b917332

Please sign in to comment.