Rename generate man page command
build_manpage is more obvious than create_manpage as most python setuptools around generation of output ready for install are prefixed with 'build_'.
This commit is contained in:
@@ -22,10 +22,10 @@ import argparse
|
||||
from distutils.core import Command
|
||||
|
||||
|
||||
class CreateManpage(Command):
|
||||
class BuildManpage(Command):
|
||||
|
||||
user_options = []
|
||||
command_name = 'create_manpage'
|
||||
command_name = 'build_manpage'
|
||||
|
||||
def initialize_options(self):
|
||||
from git_upstream import main
|
@@ -22,7 +22,7 @@ classifiers =
|
||||
Operating System :: OS Independent
|
||||
|
||||
[global]
|
||||
commands = create_manpage.CreateManpage
|
||||
commands = build_manpage.BuildManpage
|
||||
|
||||
[files]
|
||||
packages =
|
||||
|
Reference in New Issue
Block a user