46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
# Copyright 2015 Rackspace
|
|
# 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, find_packages
|
|
import sys
|
|
from setuptools.command.test import test as TestCommand
|
|
|
|
|
|
# tox integration
|
|
class Tox(TestCommand):
|
|
def finalize_options(self):
|
|
TestCommand.finalize_options(self)
|
|
self.test_args = []
|
|
self.test_suite = True
|
|
|
|
def run_tests(self):
|
|
# import here, cause outside the eggs aren't loaded
|
|
import tox
|
|
errno = tox.cmdline(self.test_args)
|
|
sys.exit(errno)
|
|
|
|
|
|
setup(
|
|
name='cafe_rsyslog_plugin',
|
|
version='0.0.1',
|
|
description='The Common Automation Framework Engine',
|
|
author='Rackspace Cloud QE',
|
|
author_email='cloud-cafe@lists.rackspace.com',
|
|
url='http://rackspace.com',
|
|
packages=find_packages(),
|
|
namespace_packages=['cafe'],
|
|
install_requires=['portal'],
|
|
tests_require=['tox'],
|
|
cmdclass={'test': Tox},
|
|
zip_safe=False)
|