blob: a43e2d29d91a79b36e71c7293581cddf241dec24 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from setuptools import setup
setup(
name='openecomp-heatbridge', # This is the name of your PyPI-package.
version='0.1', # Update the version number for new releases
description='Script to input heat stack information into aai', # Info about script
install_requires=['python-novaclient','python-cinderclient','python-glanceclient', 'os_client_config', 'python-neutronclient', 'python-heatclient'], # what we need
packages=['heatbridge'], # The name of your scipts package
package_dir={'heatbridge': 'heatbridge'} # The location of your scipts package
)
|