15 Star 6 Fork 42

openEuler/aops-apollo

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

搜索帮助