From 898c5a7d0c9d91b64a256c842f30224cd28a64d3 Mon Sep 17 00:00:00 2001 From: Rudolf Kolbe Date: Mon, 28 Oct 2024 20:20:38 +0100 Subject: [PATCH] UnityPyBoost - remove deprecated setup.py --- UnityPyBoost/setup.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 UnityPyBoost/setup.py diff --git a/UnityPyBoost/setup.py b/UnityPyBoost/setup.py deleted file mode 100644 index d5986429..00000000 --- a/UnityPyBoost/setup.py +++ /dev/null @@ -1,19 +0,0 @@ -from setuptools import setup, Extension -import os - -local = os.path.dirname(os.path.abspath(__file__)) - -setup( - name="UnityPyBoost", - description="TODO", - author="K0lb3", - version="0.0.3", - ext_modules=[ - Extension( - "UnityPyBoost", - [os.path.join(local, f) for f in os.listdir(local) if f.endswith(".c")], - language="c", - include_dirs=[local], - ) - ], -)