forked from Metaswitch/clearwater-etcd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcluster_mgr_setup.py
34 lines (31 loc) · 1021 Bytes
/
cluster_mgr_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
# @file 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-cluster-manager',
version='1.0',
namespace_packages = ['metaswitch'],
packages=['metaswitch', 'metaswitch.clearwater', 'metaswitch.clearwater.cluster_manager'],
package_dir={'':'src'},
package_data={
'': ['*.eml'],
},
test_suite='metaswitch.clearwater.cluster_manager.test',
install_requires=[
"clearwater_etcd_shared",
"metaswitchcommon"],
tests_require=[
"funcsigs",
"Mock",
"pbr",
"six"]
)