From 47915ac96a7ee8f8545cf9f817f9f5e6e315bd9d Mon Sep 17 00:00:00 2001 From: Karthikeyan Singaravelan Date: Sun, 29 Aug 2021 14:43:02 +0000 Subject: [PATCH] Use setuptools instead of distutils which was deprecated. --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 167622b..306c0e9 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,5 @@ # -*- coding: UTF-8 -*- -from distutils.core import setup - -from setuptools import find_packages +from setuptools import find_packages, setup from dodgy import __pkginfo__