822eeef6d7
Pyflakes builder was switched to using tox but this repo doesn't have a tox.ini so all builds failed. Also fixes setup.py for when we don't need Sphinx Change-Id: I49d425d001cde159c354be53b7d57eebdb4446df
26 lines
743 B
Python
26 lines
743 B
Python
import datetime
|
|
from setuptools import setup
|
|
|
|
ci_cmdclass={}
|
|
|
|
try:
|
|
from sphinx.setup_command import BuildDoc
|
|
|
|
class local_BuildDoc(BuildDoc):
|
|
def run(self):
|
|
for builder in ['html', 'man']:
|
|
self.builder = builder
|
|
self.finalize_options()
|
|
BuildDoc.run(self)
|
|
ci_cmdclass['build_sphinx'] = local_BuildDoc
|
|
except Exception:
|
|
pass
|
|
|
|
setup(name='nova',
|
|
version="%d.%02d" % (datetime.datetime.now().year, datetime.datetime.now().month),
|
|
description="OpenStack Continuous Integration Scripts",
|
|
author="OpenStack CI Team",
|
|
author_email="openstack-ci@lists.launchpad.net",
|
|
url="http://launchpad.net/openstack-ci",
|
|
cmdclass=ci_cmdclass)
|