From 545030c0a7ef38d9c82894638dc34b99153d939d Mon Sep 17 00:00:00 2001 From: yrriban Date: Thu, 21 Aug 2025 01:34:49 -0400 Subject: [PATCH] Delete setup.py; pyproject.toml has replaced it. --- setup.py | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 setup.py diff --git a/setup.py b/setup.py deleted file mode 100644 index 9222cf5..0000000 --- a/setup.py +++ /dev/null @@ -1,43 +0,0 @@ -from setuptools import find_packages -from setuptools import setup - -PROJECT = "dcc" - -VERSION = "0.0.1" - -long_description = "" - -setup( - name=PROJECT, - version=VERSION, - description="Doom Command Center", - long_description=long_description, - author="yrriban", - author_email="yrriban@gmail.com", - platforms=["Any"], - install_requires=["cliff"], - packages=find_packages(), - include_package_data=True, - entry_points={ - "console_scripts": ["dcc=dcc.main:main"], - "dcc": [ - "play = dcc.play:Play", - "record = dcc.record:Record", - "rib = dcc.rib:RIB", - "fabricate = dcc.fabricate:Fabricate", - "put = dcc.put:Put", - "pb = dcc.pb:PB", - "ss = dcc.ss:SS", - "extract = dcc.extract:Extract", - "fetch = dcc.fetch:Fetch", - "text = dcc.text:Text", - "thumb = dcc.thumb:Thumb", - "dsda = dcc.dsda:DSDA", - "eureka = dcc.eureka:Eureka", - "ls = dcc.ls:List", - "configure = dcc.configure:Configure", - "concat = dcc.concat:Concat", - ], - }, - zip_safe=False, -)