From 875b559295d57957d1ed27e3f329ee6fe591e3df Mon Sep 17 00:00:00 2001 From: Mathias Ertl Date: Sat, 9 Nov 2024 12:16:51 +0100 Subject: [PATCH] remove setup.py (no longer needed) --- .github/workflows/quality.yml | 2 +- setup.py | 20 -------------------- 2 files changed, 1 insertion(+), 21 deletions(-) delete mode 100644 setup.py diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index cc5bb6840..9b5af7171 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -54,7 +54,7 @@ jobs: - name: Validate sdist/wheel run: | pip install -r requirements/requirements-dist.txt - python setup.py sdist bdist_wheel + python -m build twine check --strict dist/* - name: Run pylint diff --git a/setup.py b/setup.py deleted file mode 100644 index 3b54a1efb..000000000 --- a/setup.py +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env python3 -# -# This file is part of django-ca (https://github.com/mathiasertl/django-ca). -# -# django-ca is free software: you can redistribute it and/or modify it under the terms of the GNU -# General Public License as published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# django-ca is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License along with django-ca. If not, -# see . - -"""setuptools based setup.py file for django-ca.""" - -from setuptools import setup - -setup()