Example #1
0
def get_rpm_version():
    version = version_info.canonical_version_string(True)
    print version
    return version
Example #2
0
#    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 healthnmon.openstack.common import setup
from healthnmon.version import version_info as version

requires = setup.parse_requirements()
depend_links = setup.parse_dependency_links()

setuptools.setup(
    name='healthnmon',
    version=version.canonical_version_string(),
    description='Healthnmon project provides health and'
                ' monitoring service for cloud',
    author='healthnmon',
    author_email='*****@*****.**',
    url='https://launchpad.net/healthnmon/',
    packages=setuptools.find_packages(exclude=['bin']),
    cmdclass=setup.get_cmdclass(),
    include_package_data=True,
    install_requires=requires,
    dependency_links=depend_links,
    test_suite='nose.collector',
    scripts=['bin/healthnmon', 'bin/healthnmon-manage'],
    py_modules=[],
)
Example #3
0
#    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 healthnmon.openstack.common import setup
from healthnmon.version import version_info as version

requires = setup.parse_requirements()
depend_links = setup.parse_dependency_links()

setuptools.setup(
    name='healthnmon',
    version=version.canonical_version_string(True),
    description='Healthnmon project provides health and'
                ' monitoring service for cloud',
    author='healthnmon',
    author_email='*****@*****.**',
    url='https://launchpad.net/healthnmon/',
    packages=setuptools.find_packages(exclude=['bin']),
    cmdclass=setup.get_cmdclass(),
    include_package_data=True,
    install_requires=requires,
    dependency_links=depend_links,
    test_suite='nose.collector',
    scripts=['bin/healthnmon', 'bin/healthnmon-manage'],
    py_modules=[],
)