view roundup/dist/command/install_lib.py @ 7376:18bae0b2e74e

Update permissions section Add Retire/Restore per class permissions. Move Register to web/email section. Reformat web/email permission list. including splitting the terms in the Rest Access/Web Access into two lines.
author John Rouillard <rouilj@ieee.org>
date Sat, 20 May 2023 20:12:36 -0400
parents 42bf0a707763
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/