c3c0182c72
modules should be put into timmy/analyze_modules directory subdirectories are also supported __example__.py explains the internals and can be used as a template Change-Id: I4d32f2467dfe1885e71340bd24e8e587aed667c1
51 lines
1.6 KiB
Python
51 lines
1.6 KiB
Python
#!/usr/bin/env python2
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2015 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.
|
|
|
|
|
|
from setuptools import setup
|
|
from timmy.env import project_name, version
|
|
import sys
|
|
|
|
pname = project_name
|
|
|
|
if sys.argv[1] == 'test':
|
|
setup_requires = ['pytest-runner']
|
|
else:
|
|
setup_requires = []
|
|
|
|
|
|
setup(name=pname,
|
|
version=version,
|
|
author="Aleksandr Dobdin",
|
|
author_email='dobdin@gmail.com',
|
|
license='Apache2',
|
|
url='https://github.com/adobdin/timmy',
|
|
description=('Mirantis OpenStack Ansible-like tool for parallel node '
|
|
'operations: two-way data transfer, log collection, '
|
|
'remote command execution'),
|
|
long_description=open('README.md').read(),
|
|
packages=[pname,
|
|
'%s.analyze_modules' % pname,
|
|
'%s.modules' % pname,
|
|
'%s_data' % pname],
|
|
install_requires=['pyyaml'],
|
|
include_package_data=True,
|
|
entry_points={'console_scripts': ['%s=%s.cli:main' % (pname, pname)]},
|
|
setup_requires=setup_requires,
|
|
tests_require=['pytest']
|
|
)
|