20 Star 7 Fork 10

openEuler/gala-spider

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
# coding: utf-8
from setuptools import setup, find_packages
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "gala-spider"
VERSION = "1.0.0"
DESC = "OS Topological Graph Storage Service and Cause Inference Service"
LONG_DESC = """
OS Topological Graph Storage Service and Cause Inference Service
"""
INSTALL_REQUIRES = [
"requests",
"pyyaml",
"pyarango>=2.0.1",
"kafka-python>=2.0.2",
"scipy",
"networkx"
]
setup(
name=NAME,
version=VERSION,
description=DESC,
author_email="hexiujun1@huawei.com",
url="https://gitee.com/openeuler/A-Ops/tree/master/gala-spider",
keywords=["OS Topological Graph Storage", "Cause Inference"],
install_requires=INSTALL_REQUIRES,
packages=find_packages(exclude=('tests',)),
data_files=[
('/etc/gala-spider/', ['config/gala-spider.yaml', 'config/topo-relation.yaml', 'config/ext-observe-meta.yaml']),
('/etc/gala-inference/', ['config/gala-inference.yaml', 'config/ext-observe-meta.yaml',
'config/infer-rule.yaml', 'config/cause-keyword.yaml']),
('/usr/lib/systemd/system/', ['service/gala-spider.service', 'service/gala-inference.service']),
],
entry_points={
'console_scripts': [
'spider-storage=spider.storage_daemon:main',
'gala-inference=cause_inference.__main__:main',
]
},
long_description=LONG_DESC,
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openeuler/gala-spider.git
git@gitee.com:openeuler/gala-spider.git
openeuler
gala-spider
gala-spider
master

搜索帮助