From 92a49f2b2468473508402f9b29e7fc341abb9ce8 Mon Sep 17 00:00:00 2001 From: Peter Hutterer <peter.hutterer@who-t.net> Date: Mon, 26 Aug 2019 15:20:07 +1000 Subject: [PATCH] setup.py: switch from distutils to setuptools Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5329711..e2709c7 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -from distutils.core import setup +from setuptools import setup long_description = ''' python-libevdev is a Python wrapper around the libevdev C library. It -- GitLab