加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cluster_mgr_setup.py 1021 Bytes
一键复制 编辑 原始数据 按行查看 历史
Richard Whitehouse 提交于 2017-09-11 17:22 . Fix python packaging
# @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"]
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化