2012-03-14 09:25:54 +11:00
|
|
|
#!/usr/bin/python
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# 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.
|
|
|
|
|
2012-05-17 16:02:04 -04:00
|
|
|
import setuptools
|
2012-03-14 09:25:54 +11:00
|
|
|
|
2012-05-17 16:02:04 -04:00
|
|
|
from heat.openstack.common import setup
|
2012-03-14 09:25:54 +11:00
|
|
|
|
2012-12-05 14:14:48 +13:00
|
|
|
requires = setup.parse_requirements()
|
2013-02-18 17:13:52 +00:00
|
|
|
depend_links = setup.parse_dependency_links()
|
2013-01-18 11:26:01 +00:00
|
|
|
project = 'heat'
|
|
|
|
|
2012-12-05 14:14:48 +13:00
|
|
|
|
2012-05-17 16:02:04 -04:00
|
|
|
setuptools.setup(
|
2013-01-18 11:26:01 +00:00
|
|
|
name=project,
|
2013-03-19 14:54:35 -07:00
|
|
|
version=setup.get_version(project, '2013.2'),
|
2012-03-14 09:25:54 +11:00
|
|
|
description='The heat project provides services for provisioning '
|
|
|
|
'virtual machines',
|
|
|
|
license='Apache License (2.0)',
|
2012-04-20 10:36:18 -07:00
|
|
|
author='Heat API Developers',
|
|
|
|
author_email='discuss@heat-api.org',
|
2012-03-14 09:25:54 +11:00
|
|
|
url='http://heat.openstack.org/',
|
2012-05-17 16:02:04 -04:00
|
|
|
cmdclass=setup.get_cmdclass(),
|
2012-06-28 11:36:50 -07:00
|
|
|
packages=setuptools.find_packages(exclude=['bin']),
|
2012-03-14 09:25:54 +11:00
|
|
|
include_package_data=True,
|
2012-12-05 14:14:48 +13:00
|
|
|
install_requires=requires,
|
2013-02-18 17:13:52 +00:00
|
|
|
dependency_links=depend_links,
|
2012-03-14 09:25:54 +11:00
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'License :: OSI Approved :: Apache Software License',
|
|
|
|
'Operating System :: POSIX :: Linux',
|
|
|
|
'Programming Language :: Python :: 2.6',
|
|
|
|
'Environment :: No Input/Output (Daemon)',
|
|
|
|
],
|
2012-11-05 09:29:35 +13:00
|
|
|
scripts=['bin/heat-cfn',
|
2012-09-25 16:13:35 +02:00
|
|
|
'bin/heat-api',
|
2012-08-30 13:32:47 +02:00
|
|
|
'bin/heat-api-cfn',
|
2012-08-22 10:30:03 +01:00
|
|
|
'bin/heat-api-cloudwatch',
|
2012-06-29 14:11:14 +01:00
|
|
|
'bin/heat-boto',
|
2012-03-29 15:14:21 -04:00
|
|
|
'bin/heat-engine',
|
2012-08-22 10:30:46 +01:00
|
|
|
'bin/heat-watch',
|
2012-09-26 10:08:05 -07:00
|
|
|
'bin/heat-db-setup',
|
2013-01-25 16:06:16 -05:00
|
|
|
'bin/cinder-keystone-setup',
|
2012-09-26 10:08:05 -07:00
|
|
|
'bin/heat-keystone-setup'],
|
2012-03-14 09:25:54 +11:00
|
|
|
py_modules=[])
|