From 2e2efbff9d636f276c90df0f72332ac4ca666745 Mon Sep 17 00:00:00 2001 From: Tobias Kunze Date: Fri, 9 Aug 2024 11:02:55 +0200 Subject: [PATCH] Remove duplicate project setup file --- README.rst | 2 +- setup.py | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) delete mode 100644 setup.py diff --git a/README.rst b/README.rst index 51a38e6..e33a33f 100644 --- a/README.rst +++ b/README.rst @@ -59,7 +59,7 @@ Development setup 3. Activate the virtual environment you use for pretalx development. -4. Execute ``python setup.py develop`` within this directory to register +4. Execute ``python -m pip install -e .`` within this directory to register this application with pretalx's plugin registry. 5. Execute ``make`` within this directory to compile translations. 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()