Install man pages.

Change-Id: I5458682a559f2202ba7a6c923b3b8b85c19f9cef
This commit is contained in:
Monty Taylor
2011-10-05 00:15:26 -04:00
parent 08bd9cf1e8
commit 0c21fa6cb3

View File

@@ -14,29 +14,30 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from setuptools import setup, find_packages from distutils.core import setup
from distutils.command.build import build
from sphinx.setup_command import BuildDoc
import commands
# Please also change this in git-review when changing it. # Please also change this in git-review when changing it.
version = '1.1' version = '1.1'
cmdclass = {} cmdclass = {}
# If Sphinx is installed on the box running setup.py,
# enable setup.py to build the documentation, otherwise,
# just ignore it
try:
from sphinx.setup_command import BuildDoc
class local_BuildDoc(BuildDoc): class local_build_sphinx(BuildDoc):
def run(self): def run(self):
for builder in ['html', 'man']: for builder in ['html', 'man']:
self.builder = builder self.builder = builder
self.finalize_options() self.finalize_options()
BuildDoc.run(self) BuildDoc.run(self)
cmdclass['build_sphinx'] = local_BuildDoc cmdclass['build_sphinx'] = local_build_sphinx
except: class local_build(build):
pass def run(self):
build.run(self)
commands.getoutput("sphinx-build -b man -c doc doc/ build/sphinx/man")
cmdclass['build'] = local_build
setup( setup(
name='git-review', name='git-review',
@@ -48,11 +49,7 @@ setup(
author='OpenStack, LLC.', author='OpenStack, LLC.',
author_email='openstack@lists.launchpad.net', author_email='openstack@lists.launchpad.net',
url='http://www.openstack.org', url='http://www.openstack.org',
include_package_data=True,
#packages=find_packages(exclude=['test', 'bin']),
scripts=['git-review'], scripts=['git-review'],
zip_safe=False, data_files=[('share/man/man1',['build/sphinx/man/git-review.1'])],
cmdclass=cmdclass, cmdclass=cmdclass,
install_requires=['setuptools'],
test_suite='nose.collector',
) )