加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
plugins_setup.py 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
Sebastian Rex 提交于 2017-10-06 14:58 . Fix up plugins-test requirements
# @file plugins_setup.py
#
# Copyright (C) Metaswitch Networks 2016
# If license terms are provided to you in a COPYING file in the root directory
# of the source code repository by which you are accessing this code, then
# the license outlined in that COPYING file applies to your use.
# Otherwise no rights are granted except for those provided to you by
# Metaswitch Networks in a separate written agreement.
import logging
import sys
import multiprocessing
from setuptools import setup, find_packages
setup(
name='clearwater-etcd-plugin-tests',
version='1.0',
namespace_packages = ['metaswitch'],
packages=['metaswitch', 'metaswitch.clearwater', 'metaswitch.clearwater.plugin_tests','clearwater_etcd_plugins','clearwater_etcd_plugins.chronos', 'clearwater_etcd_plugins.clearwater_memcached', 'clearwater_etcd_plugins.clearwater_config_manager', 'clearwater_etcd_plugins.clearwater_queue_manager', 'clearwater_etcd_plugins.clearwater_cassandra'],
package_dir={'':'src'},
package_data={
'': ['*.eml'],
},
test_suite='metaswitch.clearwater.plugin_tests',
tests_require=[
"funcsigs",
"metaswitchcommon",
"Mock",
"pbr",
"pyyaml",
"pyzmq",
"py2-ipaddress",
"six"],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化