SIGN IN SIGN UP
dianping / cat UNCLAIMED

CAT 作为服务端项目基础组件,提供了 Java, C/C++, Node.js, Python, Go 等多语言客户端,已经在美团点评的基础架构中间件框架(MVC框架,RPC框架,数据库框架,缓存框架等,消息队列,配置系统等)深度集成,为美团点评各业务线提供系统丰富的性能指标、健康状况、实时告警等。

0 0 8 Java
2018-09-25 16:35:08 +08:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
2018-10-16 19:08:19 +08:00
from setuptools import setup
2018-09-25 16:35:08 +08:00
requirements = [
"cffi>=1.11,<2.0",
]
classifiers = [
'Development Status :: 4 - Beta',
# target user.
'Intended Audience :: Developers',
# target python version.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
# cython_files = [
# "src/ccat/ccat.pyx",
# ]
setup(
2018-10-16 19:08:19 +08:00
name='cat-sdk',
2019-02-25 15:04:06 +08:00
version='3.1.2',
2018-10-16 19:08:19 +08:00
author='Cat Team and Contributors',
author_email='cat@dianping.com',
2019-02-25 15:04:06 +08:00
url="https://github.com/dianping/cat/tree/master/lib/python",
2018-10-16 19:08:19 +08:00
license="Apache License 2.0",
2019-02-25 15:04:06 +08:00
description="Cat SDK for Python",
long_description=open("README.rst").read(),
2018-10-16 19:08:19 +08:00
packages=[
"cat",
2018-10-16 19:08:19 +08:00
],
2018-09-25 16:35:08 +08:00
install_requires=requirements,
classifiers=classifiers,
package_dir={'': 'src'},
package_data={
'cat':
[
2018-10-15 17:00:12 +08:00
"lib/linux-glibc/*.so",
"lib/linux-musl-libc/*.so",
2018-09-25 16:35:08 +08:00
"lib/darwin/*.dylib"
]
},
)