[Add]MANIFEST.in file for source distribution
This commit is contained in:
parent
97614f0463
commit
d52b900876
1
MANIFEST.in
Normal file
1
MANIFEST.in
Normal file
@ -0,0 +1 @@
|
||||
recursive-include vnpy *.ico *.ini *.dll *.so *.pyd
|
7
setup.py
7
setup.py
@ -111,8 +111,11 @@ setup(
|
||||
include_package_data=True,
|
||||
packages=pkgs,
|
||||
package_data={"": [
|
||||
"*.json", "*.md", "*.ico", "*.ini",
|
||||
"*.dll", "*.so", "*.pyd"
|
||||
"*.ico",
|
||||
"*.ini",
|
||||
"*.dll",
|
||||
"*.so",
|
||||
"*.pyd"
|
||||
]},
|
||||
classifiers=[
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
|
@ -296,6 +296,7 @@ class OmsEngine(BaseEngine):
|
||||
"""Add query function to main engine."""
|
||||
self.main_engine.get_tick = self.get_tick
|
||||
self.main_engine.get_order = self.get_order
|
||||
self.main_engine.get_trade = self.get_trade
|
||||
self.main_engine.get_position = self.get_position
|
||||
self.main_engine.get_account = self.get_account
|
||||
self.main_engine.get_contract = self.get_contract
|
||||
|
Loading…
Reference in New Issue
Block a user