forked from Metaswitch/clearwater-etcd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shared_setup.py
38 lines (35 loc) · 1004 Bytes
/
shared_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
36
37
38
# @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-etcd-shared',
version='1.0',
packages=['metaswitch', 'metaswitch.clearwater', 'metaswitch.clearwater.etcd_shared'],
package_dir={'':'src'},
package_data={
'': ['*.eml'],
},
install_requires=[
"docopt",
"futures",
"prctl",
"python-etcd",
"py2_ipaddress",
"pyyaml",
"six",
"urllib3"],
tests_require=[
"funcsigs",
"Mock",
"pbr",
"six"],
)