Skip to content

Commit

Permalink
[Mod] 优化代码和文档内容
Browse files Browse the repository at this point in the history
  • Loading branch information
vnpy committed Dec 21, 2021
1 parent 0b64cab commit 596a29e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
6 changes: 3 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License
The MIT License (MIT)

Copyright (c) 2021 vn.py
Copyright (c) 2015-present, Xiaoyou Chen

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

## 说明

基于pyzmq开发的RPC服务模块,用于实现跨进程或者跨网络的服务功能调用
基于pyzmq开发的RPC服务模块,允许将某一vn.py进程启动为服务端,作为统一的行情和交易路由通道,允许多客户端同时连接,实现实现跨进程或者跨网络的分布式系统

## 安装

Expand Down
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ url = https://www.vnpy.com
license = MIT
author = Xiaoyou Chen
author_email = [email protected]
description = RPC service for vn.py quant trading framework.
description = RPC service application and gateway for vn.py quant trading framework.
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
Expand All @@ -32,3 +32,6 @@ packages = find:
zip_safe = False
install_requires =
importlib_metadata

[options.package_data]
* = *.ico
1 change: 1 addition & 0 deletions vnpy_rpcservice/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.


import importlib_metadata

from .rpc_gateway import RpcGateway
Expand Down
2 changes: 2 additions & 0 deletions vnpy_rpcservice/rpc_service/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from pathlib import Path

from vnpy.trader.app import BaseApp

from .engine import RpcEngine, APP_NAME


Expand Down

0 comments on commit 596a29e

Please sign in to comment.