From 5b77f0a698a38597351b6f626f805f0fd6c3e6e2 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Wed, 3 May 2023 15:49:58 -0700 Subject: [PATCH] Remove sphinx setuptools commands from setup.py --- PKGBUILD | 2 +- setup.py | 12 +----------- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 3cf69f4..86dba09 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Eric Torres pkgname=packaging-scripts -pkgver=1.7.2 +pkgver=1.7.1 pkgrel=2 pkgdesc="A set of helper scripts for handling Arch Linux packages" arch=('any') diff --git a/setup.py b/setup.py index 075b745..11f43a8 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,9 @@ import setuptools -from sphinx.setup_command import BuildDoc # ========== Constants ========== EXCLUDED_PACKAGES = ["test", "tests"] PACKAGES = setuptools.find_packages(exclude=EXCLUDED_PACKAGES) SCRIPTS = ["bin/addpkg", "bin/delpkg", "bin/fqo", "bin/pug2"] -CMDCLASS = {"build_sphinx": BuildDoc} # ========== Functions ========== @@ -19,7 +17,7 @@ setuptools.setup( version="1.7.1", author="Eric Russel Torres", author_email="erictorres4@protonmail.com", - description="A set of helpers for automating borg interaction", + description="A set of scripts for automating pacman database interaction", long_description=long_description, long_description_content_type="text/plain", url="", @@ -30,12 +28,4 @@ setuptools.setup( "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], - command_options={ - "build_sphinx": { - "project": ("setup.py", "name"), - "version": ("setup.py", "version"), - "release": ("setup.py", "release"), - "source_dir": ("setup.py", "doc"), - } - }, )