0e8f267720
Change-Id: I0c3a3a62c26724ad10a5108f019002c5fbf091f9
56 lines
1.7 KiB
Python
56 lines
1.7 KiB
Python
# Copyright 2014 Mirantis, Inc.
|
|
#
|
|
# 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.
|
|
|
|
import os
|
|
import setuptools
|
|
|
|
|
|
def requirements():
|
|
dir_path = os.path.dirname(os.path.realpath(__file__))
|
|
requirements = []
|
|
with open('{0}/requirements.txt'.format(dir_path), 'r') as reqs:
|
|
requirements = reqs.readlines()
|
|
return requirements
|
|
|
|
|
|
name = 'tasklib'
|
|
version = '7.0.0'
|
|
|
|
|
|
setuptools.setup(
|
|
name=name,
|
|
version=version,
|
|
description='Tasklib package',
|
|
long_description="""Tasklib is intended to be mediator between different
|
|
configuration management solutions and orchestrator.
|
|
This is required to support plugable tasks/actions with good
|
|
amount of control, such as stop/pause/poll state.
|
|
""",
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"Programming Language :: Python",
|
|
],
|
|
author='Mirantis Inc.',
|
|
author_email='product@mirantis.com',
|
|
url='http://mirantis.com',
|
|
keywords='tasklib mirantis',
|
|
packages=setuptools.find_packages(),
|
|
zip_safe=False,
|
|
install_requires=requirements(),
|
|
include_package_data=True,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'taskcmd = tasklib.cli:main',
|
|
]})
|