view roundup/dist/command/install_lib.py @ 6647:42bf0a707763

issue2551183 - Replace references to distutils in roundup/dist/command First pass at fixing this. Seems to work in: native install virtual env python 2.7 and 3.6. Also docker python 3. Could use more testing though.
author John Rouillard <rouilj@ieee.org>
date Thu, 28 Apr 2022 18:10:10 -0400
parents 85dfe17c182e
children
line wrap: on
line source

from roundup.dist.command.build import build_message_files, check_manifest
from setuptools.command.install_lib import install_lib as base

class install_lib(base):

    def run(self):
        check_manifest()
        build_message_files(self)
        base.run(self)

Roundup Issue Tracker: http://roundup-tracker.org/