From edfc99681913724f2691aaa53117c876618941fb Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Thu, 9 May 2024 20:14:43 -0700 Subject: [PATCH] Keep setup.py minimal --- setup.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/setup.py b/setup.py index 5c2fccf..54f7c1d 100644 --- a/setup.py +++ b/setup.py @@ -1,15 +1,5 @@ import setuptools -# ========== Constants ========== EXCLUDED_PACKAGES = ["test", "tests"] PACKAGES = setuptools.find_packages(exclude=EXCLUDED_PACKAGES) -SCRIPTS = ["bin/addpkg", "bin/delpkg", "bin/fqo", "bin/pug2"] - - -# ========== Functions ========== -with open("README.rst", "r") as fh: - long_description = fh.read() - - -# ========== Package Setup ========== setuptools.setup(packages=PACKAGES)