Skip to content

Commit 596a29e

Browse files
committed
[Mod] 优化代码和文档内容
1 parent 0b64cab commit 596a29e

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

LICENSE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
MIT License
1+
The MIT License (MIT)
22

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

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
## 说明
1414

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

1717
## 安装
1818

setup.cfg

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ url = https://www.vnpy.com
55
license = MIT
66
author = Xiaoyou Chen
77
author_email = xiaoyou.chen@mail.vnpy.com
8-
description = RPC service for vn.py quant trading framework.
8+
description = RPC service application and gateway for vn.py quant trading framework.
99
long_description = file: README.md
1010
long_description_content_type = text/markdown
1111
keywords =
@@ -32,3 +32,6 @@ packages = find:
3232
zip_safe = False
3333
install_requires =
3434
importlib_metadata
35+
36+
[options.package_data]
37+
* = *.ico

vnpy_rpcservice/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
# SOFTWARE.
2222

23+
2324
import importlib_metadata
2425

2526
from .rpc_gateway import RpcGateway

vnpy_rpcservice/rpc_service/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
from pathlib import Path
2+
23
from vnpy.trader.app import BaseApp
4+
35
from .engine import RpcEngine, APP_NAME
46

57

0 commit comments

Comments
 (0)