forked from Metaswitch/clearwater-etcd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins_setup.py
35 lines (32 loc) · 1.25 KB
/
plugins_setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# @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"],
)