# distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or # implied. # See the License for the specific language governing permissions and # limitations under the License. import setuptools from heat.openstack.common import setup from heat.version import version_info as version requires = setup.parse_requirements() setuptools.setup( name='heat', version=version.canonical_version_string(always=True), description='The heat project provides services for provisioning ' 'virtual machines', license='Apache License (2.0)', author='Heat API Developers', author_email='*****@*****.**', url='http://heat.openstack.org/', cmdclass=setup.get_cmdclass(), packages=setuptools.find_packages(exclude=['bin']), include_package_data=True, install_requires=requires, classifiers=[ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: Apache Software License', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python :: 2.6',
master_doc = 'index' # General information about the project. project = u'Heat Release Notes' copyright = u'2015, Heat Developers' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. from heat.version import version_info as heat_version # The full version, including alpha/beta/rc tags. release = heat_version.version_string_with_vcs() # The short X.Y version. version = heat_version.canonical_version_string() # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. # language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: # today = '' # Else, today_fmt is used as the format for a strftime call. # today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = []