From bbbde97b5e625a49a1a66e307931548cb33f260b Mon Sep 17 00:00:00 2001 From: Brian Dolbec Date: Sun, 10 Jul 2022 11:33:11 -0700 Subject: setup.py: migrate to setuptools Signed-off-by: Brian Dolbec --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 23e9b36..36995de 100755 --- a/setup.py +++ b/setup.py @@ -3,8 +3,8 @@ import re import sys import subprocess -from distutils import core -from distutils.cmd import Command + +from setuptools import setup, Command from glob import glob import os @@ -67,7 +67,7 @@ manpages = [ ] -class set_version(core.Command): +class set_version(Command): """Set python __version__ and bash VERSION to our __version__.""" description = "hardcode scripts' version using VERSION from environment" @@ -130,7 +130,7 @@ test_data = { ] } -core.setup( +setup( name="gentoolkit", version=__version__, description="Set of tools that work with and enhance portage.", -- cgit v1.2.3