Skip to content

Commit

Permalink
Add proper pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
rixx committed Oct 3, 2023
1 parent 03412e9 commit d3ec02f
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 42 deletions.
34 changes: 34 additions & 0 deletions {{cookiecutter.repo_name}}/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[project]
name = "{{cookiecutter.repo_name}}"
version = "0.0.0"
description = "{{cookiecutter.short_description}}"
readme = "README.rst"
license = {text = "Apache Software License"}
keywords = ["pretalx"]
authors = [
{name = "{{cookiecutter.author_name}}", email = "{{cookiecutter.author_email}}"},
]
maintainers = [
{name = "{{cookiecutter.author_name}}", email = "{{cookiecutter.author_email}}"},
]

dependencies = [
]

[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"

[tool.setuptools]
include-package-data = true

[tool.setuptools.packages.find]
include = ["pretalx*"]
42 changes: 0 additions & 42 deletions {{cookiecutter.repo_name}}/setup.py

This file was deleted.

0 comments on commit d3ec02f

Please sign in to comment.