1 Star 0 Fork 43

chen524/aops-apollo

forked from openEuler/aops-apollo 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 885 Bytes
一键复制 编辑 原始数据 按行查看 历史
# coding: utf-8
from setuptools import setup, find_packages
NAME = "aops-apollo"
VERSION = "1.3.3"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = [
'elasticsearch',
'marshmallow>=3.13.0',
'Flask',
'Flask-RESTful',
'Flask-APScheduler',
'setuptools',
'SQLAlchemy',
'PyYAML',
'retrying',
'lxml',
'gevent',
]
setup(
name=NAME,
version=VERSION,
description="aops-apollo",
install_requires=REQUIRES,
packages=find_packages(),
data_files=[
('/etc/aops', ['conf/apollo.ini']),
('/etc/aops', ['conf/apollo_crontab.yml']),
('/usr/lib/systemd/system', ['aops-apollo.service']),
("/opt/aops/database", ["database/apollo.sql"]),
],
scripts=['aops-apollo'],
zip_safe=False,
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chenkace/aops-apollo.git
git@gitee.com:chenkace/aops-apollo.git
chenkace
aops-apollo
aops-apollo
master

搜索帮助