1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Use Python's setuptools instead of distutils
Author: Sven Geuer <sge@debian.org>
Origin: backport, https://github.com/trendmicro/tlsh/pull/128
Forwarded: not-needed
Last-Update: 2025-11-25
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/py_ext/setup.py
+++ b/py_ext/setup.py
@@ -2,7 +2,7 @@
import re
import sys
from os.path import join, realpath
-from distutils.core import setup, Extension
+from setuptools import setup, Extension
|