From 210a18f6b3fce0880cf5a1055f8f1a8c542e212f Mon Sep 17 00:00:00 2001 From: Tobias Kunze Date: Sat, 30 Sep 2023 13:13:22 +0200 Subject: [PATCH] Fix pyproject.toml install --- pyproject.toml | 5 ----- setup.py | 3 --- 2 files changed, 8 deletions(-) delete mode 100644 setup.py diff --git a/pyproject.toml b/pyproject.toml index ee60ca8..85cbdb3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,13 +23,9 @@ dependencies = [ [project.entry-points."pretalx.plugin"] pretalx_broadcast_tools = "pretalx_broadcast_tools:PretalxPluginMeta" -[project.entry-points."distutils.commands"] -build = "pretalx_plugin_build.build:CustomBuild" - [build-system] requires = [ "setuptools", - "pretalx-plugin-build", ] [project.urls] @@ -41,4 +37,3 @@ include-package-data = true [tool.setuptools.packages.find] include = ["pretalx*"] -namespaces = false diff --git a/setup.py b/setup.py deleted file mode 100644 index 6068493..0000000 --- a/setup.py +++ /dev/null @@ -1,3 +0,0 @@ -from setuptools import setup - -setup()