1 Star 0 Fork 0

NATS/stan.py

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 985 Bytes
一键复制 编辑 原始数据 按行查看 历史
from setuptools import setup
import re
import ast
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('stan/aio/client.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
setup(
name='asyncio-nats-streaming',
version=version,
description='NATS Streaming client for Python Asyncio',
long_description='Asyncio based Python client for NATS Streaming',
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
url='https://github.com/nats-io/stan.py',
author='Waldemar Quevedo',
author_email='[email protected]',
license='Apache 2 License',
packages=['stan', 'stan.aio', 'stan.pb'],
zip_safe=True,
install_requires=['protobuf>=3.7','asyncio-nats-client>=0.7.0'],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nats-io/stan.py.git
[email protected]:nats-io/stan.py.git
nats-io
stan.py
stan.py
master

搜索帮助