hikyuu 2.6.8__py3-none-win_amd64.whl → 2.6.8.2__py3-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hikyuu/__init__.pyi +652 -649
- hikyuu/analysis/__init__.pyi +563 -563
- hikyuu/analysis/analysis.pyi +584 -582
- hikyuu/core.pyi +563 -563
- hikyuu/cpp/__init__.pyi +2 -2
- hikyuu/cpp/core310.pyd +0 -0
- hikyuu/cpp/core310.pyi +11 -0
- hikyuu/cpp/core311.pyd +0 -0
- hikyuu/cpp/core311.pyi +11 -0
- hikyuu/cpp/core312.pyd +0 -0
- hikyuu/cpp/core312.pyi +11 -0
- hikyuu/cpp/core313.pyd +0 -0
- hikyuu/cpp/core313.pyi +11 -0
- hikyuu/cpp/core39.pyd +0 -0
- hikyuu/cpp/core39.pyi +11 -0
- hikyuu/cpp/hikyuu.dll +0 -0
- hikyuu/cpp/hikyuu.lib +0 -0
- hikyuu/draw/drawplot/__init__.pyi +36 -31
- hikyuu/draw/drawplot/bokeh_draw.pyi +658 -647
- hikyuu/draw/drawplot/common.pyi +4 -3
- hikyuu/draw/drawplot/echarts_draw.pyi +593 -594
- hikyuu/draw/drawplot/matplotlib_draw.pyi +900 -868
- hikyuu/draw/elder.pyi +20 -19
- hikyuu/draw/kaufman.pyi +18 -18
- hikyuu/draw/volume.pyi +10 -10
- hikyuu/extend.pyi +597 -593
- hikyuu/hub.pyi +67 -69
- hikyuu/include/hikyuu/KData.h +8 -0
- hikyuu/include/hikyuu/python/pybind_utils.h +8 -0
- hikyuu/include/hikyuu/version.h +2 -2
- hikyuu/plugin/backtest.dll +0 -0
- hikyuu/plugin/clickhousedriver.dll +0 -0
- hikyuu/plugin/dataserver.dll +0 -0
- hikyuu/plugin/extind.dll +0 -0
- hikyuu/plugin/hkuextra.dll +0 -0
- hikyuu/plugin/import2hdf5.dll +0 -0
- hikyuu/plugin/tmreport.dll +0 -0
- hikyuu/trade_manage/__init__.pyi +579 -579
- hikyuu/trade_manage/broker.pyi +18 -19
- hikyuu/trade_manage/broker_easytrader.pyi +4 -6
- hikyuu/trade_manage/broker_mail.pyi +24 -22
- hikyuu/trade_manage/trade.pyi +579 -579
- hikyuu/util/__init__.pyi +1 -1
- hikyuu/util/check.pyi +15 -17
- hikyuu/util/mylog.pyi +7 -8
- hikyuu/util/notebook.pyi +11 -9
- hikyuu/util/singleton.pyi +6 -8
- {hikyuu-2.6.8.dist-info → hikyuu-2.6.8.2.dist-info}/METADATA +14 -4
- {hikyuu-2.6.8.dist-info → hikyuu-2.6.8.2.dist-info}/RECORD +52 -54
- {hikyuu-2.6.8.dist-info → hikyuu-2.6.8.2.dist-info}/WHEEL +1 -1
- hikyuu/setup.py +0 -104
- hikyuu-2.6.8.dist-info/LICENSE +0 -201
- {hikyuu-2.6.8.dist-info → hikyuu-2.6.8.2.dist-info}/entry_points.txt +0 -0
- {hikyuu-2.6.8.dist-info → hikyuu-2.6.8.2.dist-info}/top_level.txt +0 -0
hikyuu/util/__init__.pyi
CHANGED
|
@@ -18,8 +18,8 @@ from hikyuu.util.mylog import capture_multiprocess_all_logger
|
|
|
18
18
|
from hikyuu.util.mylog import class_logger
|
|
19
19
|
from hikyuu.util.mylog import get_default_logger
|
|
20
20
|
from hikyuu.util.mylog import hku_benchmark
|
|
21
|
-
from hikyuu.util.mylog import hku_debug as hku_trace
|
|
22
21
|
from hikyuu.util.mylog import hku_debug
|
|
22
|
+
from hikyuu.util.mylog import hku_debug as hku_trace
|
|
23
23
|
from hikyuu.util.mylog import hku_debug_if as hku_trace_if
|
|
24
24
|
from hikyuu.util.mylog import hku_debug_if
|
|
25
25
|
from hikyuu.util.mylog import hku_error
|
hikyuu/util/check.pyi
CHANGED
|
@@ -5,18 +5,13 @@ import logging
|
|
|
5
5
|
import multiprocessing.synchronize
|
|
6
6
|
import sys as sys
|
|
7
7
|
import traceback as traceback
|
|
8
|
-
import typing
|
|
9
8
|
__all__ = ['HKUCheckError', 'HKUIngoreError', 'asyncio', 'checkif', 'functools', 'g_hku_logger_lock', 'get_exception_info', 'hku_catch', 'hku_check', 'hku_check_ignore', 'hku_check_throw', 'hku_logger', 'hku_run_ignore_exception', 'hku_to_async', 'sys', 'traceback']
|
|
10
9
|
class HKUCheckError(Exception):
|
|
11
|
-
__firstlineno__: typing.ClassVar[int] = 17
|
|
12
|
-
__static_attributes__: typing.ClassVar[tuple] = ('expression', 'message')
|
|
13
10
|
def __init__(self, expression, message):
|
|
14
11
|
...
|
|
15
12
|
def __str__(self):
|
|
16
13
|
...
|
|
17
14
|
class HKUIngoreError(Exception):
|
|
18
|
-
__firstlineno__: typing.ClassVar[int] = 26
|
|
19
|
-
__static_attributes__: typing.ClassVar[tuple] = ('expression', 'message')
|
|
20
15
|
def __init__(self, expression, message = None):
|
|
21
16
|
...
|
|
22
17
|
def __str__(self):
|
|
@@ -25,21 +20,23 @@ def checkif(expression, message, excepion = None, **kwargs):
|
|
|
25
20
|
"""
|
|
26
21
|
如果 expression 为 True,则抛出异常。注意:该函数的判定和 assert 是相反的。
|
|
27
22
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
23
|
+
:param boolean expression: 判断条件
|
|
24
|
+
:param str message: 异常注解信息
|
|
25
|
+
:param Exception exception: 指定的异常类,为None时,为默认 HKUCheckError 异常
|
|
26
|
+
|
|
31
27
|
"""
|
|
32
28
|
def get_exception_info():
|
|
33
29
|
...
|
|
34
30
|
def hku_catch(ret = None, trace = False, callback = None, retry = 1, with_msg = False, re_raise = False):
|
|
35
31
|
"""
|
|
36
32
|
捕获发生的异常, 包装方式: @hku_catch()
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
33
|
+
:param ret: 异常发生时返回值, with_msg为True时, 返回为 (ret, errmsg)
|
|
34
|
+
:param boolean trace: 打印异常堆栈信息
|
|
35
|
+
:param func callback: 发生异常后的回调函数, 入参同func
|
|
36
|
+
:param int retry: 尝试执行的次数
|
|
37
|
+
:param boolean with_msg: 是否返回异常错误信息, 为True时, 函数返回为 (ret, errmsg)
|
|
38
|
+
:param boolean re_raise: 是否将错误信息以异常的方式重新抛出
|
|
39
|
+
|
|
43
40
|
"""
|
|
44
41
|
def hku_check(exp, msg, *args, **kwargs):
|
|
45
42
|
...
|
|
@@ -51,9 +48,10 @@ def hku_check_throw(expression, message, excepion = None, **kwargs):
|
|
|
51
48
|
"""
|
|
52
49
|
如果 expression 为 False,则抛出异常。
|
|
53
50
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
51
|
+
:param boolean expression: 判断条件
|
|
52
|
+
:param str message: 异常注解信息
|
|
53
|
+
:param Exception exception: 指定的异常类,为None时,为默认 HKUCheckError 异常
|
|
54
|
+
|
|
57
55
|
"""
|
|
58
56
|
def hku_run_ignore_exception(func, *args, **kwargs):
|
|
59
57
|
"""
|
hikyuu/util/mylog.pyi
CHANGED
|
@@ -5,11 +5,8 @@ import multiprocessing as multiprocessing
|
|
|
5
5
|
import os as os
|
|
6
6
|
import time as time
|
|
7
7
|
import traceback as traceback
|
|
8
|
-
import typing
|
|
9
8
|
__all__ = ['FORMAT', 'LoggingContext', 'add_class_logger_handler', 'capture_multiprocess_all_logger', 'class_logger', 'functools', 'g_hku_logger_lock', 'get_default_logger', 'hku_benchmark', 'hku_debug', 'hku_debug_if', 'hku_error', 'hku_error_if', 'hku_fatal', 'hku_fatal_if', 'hku_info', 'hku_info_if', 'hku_logger', 'hku_logger_name', 'hku_trace', 'hku_trace_if', 'hku_warn', 'hku_warn_if', 'logging', 'multiprocessing', 'os', 'set_my_logger_file', 'spend_time', 'time', 'traceback', 'with_trace']
|
|
10
9
|
class LoggingContext:
|
|
11
|
-
__firstlineno__: typing.ClassVar[int] = 271
|
|
12
|
-
__static_attributes__: typing.ClassVar[tuple] = ('close', 'handler', 'level', 'logger', 'old_level')
|
|
13
10
|
def __enter__(self):
|
|
14
11
|
...
|
|
15
12
|
def __exit__(self, et, ev, tb):
|
|
@@ -20,16 +17,18 @@ def add_class_logger_handler(class_list, level = 20, handler = None):
|
|
|
20
17
|
"""
|
|
21
18
|
为指定的类增加日志 handler,并设定级别
|
|
22
19
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
20
|
+
:param class_list: 类列表
|
|
21
|
+
:param level: 日志级别
|
|
22
|
+
:param handler: logging handler
|
|
23
|
+
|
|
26
24
|
"""
|
|
27
25
|
def capture_multiprocess_all_logger(queue, level = None):
|
|
28
26
|
"""
|
|
29
27
|
重设所有子进程中的 logger 输出指定的 queue,并重设level
|
|
30
28
|
|
|
31
|
-
|
|
32
|
-
|
|
29
|
+
@param multiprocessing.Queue queue 指定的 mp Queue
|
|
30
|
+
@param level 日志输出等级, None为保持原有等级
|
|
31
|
+
|
|
33
32
|
"""
|
|
34
33
|
def class_logger(cls, enable = False):
|
|
35
34
|
...
|
hikyuu/util/notebook.pyi
CHANGED
|
@@ -3,19 +3,21 @@ __all__ = ['in_interactive_session', 'in_ipython_frontend']
|
|
|
3
3
|
def in_interactive_session() -> bool:
|
|
4
4
|
"""
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Check if we're running in an interactive shell.
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
Returns
|
|
9
|
+
-------
|
|
10
|
+
bool
|
|
11
|
+
True if running under python/ipython interactive shell.
|
|
12
|
+
|
|
12
13
|
"""
|
|
13
14
|
def in_ipython_frontend() -> bool:
|
|
14
15
|
"""
|
|
15
16
|
|
|
16
|
-
|
|
17
|
+
Check if we're inside an IPython zmq frontend. 检测是否在 jupyter 环境中
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
Returns
|
|
20
|
+
-------
|
|
21
|
+
bool
|
|
22
|
+
|
|
21
23
|
"""
|
hikyuu/util/singleton.pyi
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
|
-
import _thread
|
|
3
2
|
import threading as threading
|
|
4
3
|
import typing
|
|
5
4
|
__all__ = ['SingletonType', 'threading']
|
|
@@ -7,14 +6,13 @@ class SingletonType(type):
|
|
|
7
6
|
"""
|
|
8
7
|
基于 metalclass 实现单例
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
9
|
+
示例:
|
|
10
|
+
class MyClass(metaclass=SingletonType):
|
|
11
|
+
def __init__(self,name):
|
|
12
|
+
self.name = name
|
|
13
|
+
|
|
14
14
|
"""
|
|
15
|
-
|
|
16
|
-
__static_attributes__: typing.ClassVar[tuple] = tuple()
|
|
17
|
-
_instance_lock: typing.ClassVar[_thread.lock] # value = <unlocked _thread.lock object at 0x0000020A83F47880>
|
|
15
|
+
_instance_lock: typing.ClassVar[_thread.lock] # value = <unlocked _thread.lock object at 0x00000181E84ADE70>
|
|
18
16
|
@classmethod
|
|
19
17
|
def __call__(cls, *args, **kwargs):
|
|
20
18
|
...
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: hikyuu
|
|
3
|
-
Version: 2.6.8
|
|
3
|
+
Version: 2.6.8.2
|
|
4
4
|
Summary: Hikyuu Quant Framework for System Trading Analysis and backtester
|
|
5
5
|
Home-page: http://hikyuu.org/
|
|
6
6
|
Author: fasiondog
|
|
@@ -25,7 +25,6 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
25
25
|
Classifier: Programming Language :: Python :: 3.12
|
|
26
26
|
Classifier: Programming Language :: Python :: 3.13
|
|
27
27
|
Description-Content-Type: text/markdown
|
|
28
|
-
License-File: LICENSE
|
|
29
28
|
Requires-Dist: click
|
|
30
29
|
Requires-Dist: numpy
|
|
31
30
|
Requires-Dist: matplotlib
|
|
@@ -49,7 +48,18 @@ Requires-Dist: pipdeptree
|
|
|
49
48
|
Requires-Dist: h5py
|
|
50
49
|
Requires-Dist: tdqm
|
|
51
50
|
Requires-Dist: clickhouse-connect
|
|
52
|
-
Requires-Dist: pyarrow
|
|
51
|
+
Requires-Dist: pyarrow>=15.0.0
|
|
52
|
+
Dynamic: author
|
|
53
|
+
Dynamic: author-email
|
|
54
|
+
Dynamic: classifier
|
|
55
|
+
Dynamic: description
|
|
56
|
+
Dynamic: description-content-type
|
|
57
|
+
Dynamic: home-page
|
|
58
|
+
Dynamic: keywords
|
|
59
|
+
Dynamic: license
|
|
60
|
+
Dynamic: platform
|
|
61
|
+
Dynamic: requires-dist
|
|
62
|
+
Dynamic: summary
|
|
53
63
|
|
|
54
64
|

|
|
55
65
|
|
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
hikyuu/LICENSE.txt,sha256=Pw3M20qvGBnI4pcLKZc6A6rbxL2qT6vqAs2OWXRhlbE,1085
|
|
2
2
|
hikyuu/__init__.py,sha256=9mnyzFXqlRFT1jmgMPYGfysuyZwrGRUy_xqzHe9g0xo,18751
|
|
3
|
-
hikyuu/__init__.pyi,sha256=
|
|
3
|
+
hikyuu/__init__.pyi,sha256=tJyuYo2p1GFCrarJpi6EEIRRVr8rpniORdKugEz6xEg,77412
|
|
4
4
|
hikyuu/core.py,sha256=emuXJhJkl8UELdZD_xqXlV_sfiuWR5d5lO-SO2oem3g,660
|
|
5
|
-
hikyuu/core.pyi,sha256=
|
|
5
|
+
hikyuu/core.pyi,sha256=WEiSXOuEb6Dszwz6zMwlewLnmzxTdx8PoMo3oZ0SHbw,57752
|
|
6
6
|
hikyuu/extend.py,sha256=LRqhkixd8PAo1VCp5mespJgf-8CkB6tuquzZrT6MxNg,9705
|
|
7
|
-
hikyuu/extend.pyi,sha256=
|
|
7
|
+
hikyuu/extend.pyi,sha256=ESY-U17Q5e42dV7ll1ogixo71MsnLpobPi7T9ja9G7Q,61420
|
|
8
8
|
hikyuu/hub.py,sha256=56TuLxF-3sOOMn9UKjEQWvTIlVicLj1dIHmaIKEERzM,28641
|
|
9
|
-
hikyuu/hub.pyi,sha256=
|
|
9
|
+
hikyuu/hub.pyi,sha256=sMZmQJLpGZB_AVTPH4DB6xq21sgkmDBWgzGG8TvUaRg,10751
|
|
10
10
|
hikyuu/interactive.py,sha256=Wwl3_FaczN_33wtSpRFipqUEuTdkQAqIjQxHE4skL-0,2343
|
|
11
|
-
hikyuu/setup.py,sha256=lTOmlSqiAGVDLfbAi1Jt0Ek8ab8VvlymO6RmY0_lGPo,4413
|
|
12
11
|
hikyuu/analysis/__init__.py,sha256=b1jcxxmFC0j_vxiDwmCIC4KrfDdAXAfz8CVKgGMm-Cw,266
|
|
13
|
-
hikyuu/analysis/__init__.pyi,sha256=
|
|
12
|
+
hikyuu/analysis/__init__.pyi,sha256=5OFtA6WQO0wg7OFOHbtS3gAfJIWLSaUc61B34PuD5Jg,50045
|
|
14
13
|
hikyuu/analysis/analysis.py,sha256=dNymY60MRcTJRG4203qioZMtskLhS0fmMiBvS_KVEWA,4768
|
|
15
|
-
hikyuu/analysis/analysis.pyi,sha256=
|
|
14
|
+
hikyuu/analysis/analysis.pyi,sha256=nMy5126pmFo_rgimvuaNy06_RzpKEt3XT9uZbwOGRAo,59807
|
|
16
15
|
hikyuu/config/__init__.py,sha256=ugyuFliEqtAwQmH4sTlc16YXKYbFWDmfyk87fErB8-8,21
|
|
17
16
|
hikyuu/config/block/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
17
|
hikyuu/config/block/dybk.ini,sha256=MEPThkZnATGr5L5Wxtu4_kE0kJxq5fQGyL8bGpVFhIk,53750
|
|
@@ -21,23 +20,23 @@ hikyuu/config/block/hybk.ini,sha256=ngsM-qeawJC8XSYg2cYP2xjnRGmnlFLkDnzy8PvUgZs,
|
|
|
21
20
|
hikyuu/config/block/self.ini,sha256=LUJBZ6HzEY3VmEjjFIpl87zdGvbk2i4ycmPPZjJYRoA,225
|
|
22
21
|
hikyuu/config/block/zsbk.ini,sha256=w23yV7pLbmSUZJPAqX8A9EZCQGZd_pj6D2ovdGG_Pfo,657541
|
|
23
22
|
hikyuu/cpp/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
24
|
-
hikyuu/cpp/__init__.pyi,sha256=
|
|
23
|
+
hikyuu/cpp/__init__.pyi,sha256=GmTyZW8L4QkuUQNQhL2tthzqtn5C21pcl9N6_uDPCrs,80
|
|
25
24
|
hikyuu/cpp/boost_date_time-mt.dll,sha256=mX6qfoEQq7IJr5ZrNw5WXEaRl7ANeqAohCCdIE7aRdE,9728
|
|
26
25
|
hikyuu/cpp/boost_serialization-mt.dll,sha256=KRlomNQG5SicU2zrD52czsYohYCbjv5wxDX8DtWGa8Q,218112
|
|
27
26
|
hikyuu/cpp/boost_wserialization-mt.dll,sha256=zjgu0y3TCLb7e6cy_vFn8C6zUr6voYCHSZI6Qs509m8,156672
|
|
28
27
|
hikyuu/cpp/concrt140.dll,sha256=T1AJkqU8QaC6RKEcM8SB2HY1BadFO-EthRB4VquPszI,322560
|
|
29
|
-
hikyuu/cpp/core310.pyd,sha256=
|
|
30
|
-
hikyuu/cpp/core310.pyi,sha256=
|
|
31
|
-
hikyuu/cpp/core311.pyd,sha256=
|
|
32
|
-
hikyuu/cpp/core311.pyi,sha256=
|
|
33
|
-
hikyuu/cpp/core312.pyd,sha256=
|
|
34
|
-
hikyuu/cpp/core312.pyi,sha256=
|
|
35
|
-
hikyuu/cpp/core313.pyd,sha256=
|
|
36
|
-
hikyuu/cpp/core313.pyi,sha256=
|
|
37
|
-
hikyuu/cpp/core39.pyd,sha256=
|
|
38
|
-
hikyuu/cpp/core39.pyi,sha256=
|
|
39
|
-
hikyuu/cpp/hikyuu.dll,sha256=
|
|
40
|
-
hikyuu/cpp/hikyuu.lib,sha256=
|
|
28
|
+
hikyuu/cpp/core310.pyd,sha256=xK8RCAJZfjTaVMLH_t_BN99KzX7dHUzdLUPWb7JiC38,9665024
|
|
29
|
+
hikyuu/cpp/core310.pyi,sha256=Kbp16D1rJg8PBIDs6I2LMegotYj-poHbCkZfeJkIe0k,483078
|
|
30
|
+
hikyuu/cpp/core311.pyd,sha256=MdKapSPRQRtGVBO_gdTN843HQKxMLwtgy0ge6TGqB90,9668096
|
|
31
|
+
hikyuu/cpp/core311.pyi,sha256=bxqsPB-K6tNhGKYfLyTky8ZaRosLEeJtl6wPr3mp09I,483078
|
|
32
|
+
hikyuu/cpp/core312.pyd,sha256=UcRemVTXWrzDuK4vA_6-0I6Q-pVRGBMOCQki_K9Wd_c,9814528
|
|
33
|
+
hikyuu/cpp/core312.pyi,sha256=2J65e4wfmdzubWeQuVapnaFyI1b6bBxzS7TU_JGsM9I,483078
|
|
34
|
+
hikyuu/cpp/core313.pyd,sha256=QuwrzUPtvXLkDD_7ZON4VEcBktx9NA02snzlRPVulBQ,9810432
|
|
35
|
+
hikyuu/cpp/core313.pyi,sha256=4kHxPa80T9aiOQJB-yMOcQuQNUkbkuFkuVqEfaaGflg,482275
|
|
36
|
+
hikyuu/cpp/core39.pyd,sha256=ehzHNb-IdAonLcStJiSQu1uVrrbU6V79Of5hgxL_FUY,10418176
|
|
37
|
+
hikyuu/cpp/core39.pyi,sha256=SjUYuP5quErcJwB0chLQ2DBiqmPPgDGDjiTBLN1WIpk,483071
|
|
38
|
+
hikyuu/cpp/hikyuu.dll,sha256=dUK3HZzhJt4CSV48BGT1uDMEYPebQE0555JGDjZxsJE,19795456
|
|
39
|
+
hikyuu/cpp/hikyuu.lib,sha256=D28qR0uAWDG3QKw9S43kg471lWuGn2c7wlW7aVIgnVE,13877644
|
|
41
40
|
hikyuu/cpp/hku_hdf5.dll,sha256=Diks-nS42Ix13UuDSRfafphpc1y7cNdRl1p8Ey_kGsQ,3515392
|
|
42
41
|
hikyuu/cpp/hku_hdf5_cpp.dll,sha256=76Acxay7XVoNBms2FSeg8oT6ApvkO13vE6LimEIYIjs,304128
|
|
43
42
|
hikyuu/cpp/hku_hdf5_hl.dll,sha256=pyNJlBqudNvD34KCrOddLZtUrcYtAyQPf-qWjjb-qnI,120320
|
|
@@ -156,21 +155,21 @@ hikyuu/data_driver/pytdx_data_driver.py,sha256=9wPWM_JxD7wM4vlau3ohh_dtI_rI0B-4t
|
|
|
156
155
|
hikyuu/draw/__init__.py,sha256=khA5iV0u_Rjon0UG0SWPCRM4hYHbrIPNSua_NQRwwV8,2600
|
|
157
156
|
hikyuu/draw/__init__.pyi,sha256=eZXAkWF9BRMth9yDJwLfwmGCLVIzf7vhxOynOIU8lrI,1987
|
|
158
157
|
hikyuu/draw/elder.py,sha256=NyG8qbOWZxuG7pOjkHAgf16AEJCLYLTrmzXFjzMPv3E,5530
|
|
159
|
-
hikyuu/draw/elder.pyi,sha256=
|
|
158
|
+
hikyuu/draw/elder.pyi,sha256=MJIJn--uCi9jirtsmNHjkmgAkFok5R11OFv1E4Qv03g,2483
|
|
160
159
|
hikyuu/draw/kaufman.py,sha256=EIG7z30de6-NUsR5yC_-LPb285bUbmzziU5xBZPSGiE,7271
|
|
161
|
-
hikyuu/draw/kaufman.pyi,sha256=
|
|
160
|
+
hikyuu/draw/kaufman.pyi,sha256=YkTUQfYCZCuWi0isQtS67X7xKI82Jxr13b0cIA_lPJI,2522
|
|
162
161
|
hikyuu/draw/volume.py,sha256=gt8BbnI7ct_JMi1nIvx5CLVbKuk5wI4Onzq7S7sIcng,4788
|
|
163
|
-
hikyuu/draw/volume.pyi,sha256=
|
|
162
|
+
hikyuu/draw/volume.pyi,sha256=nJiekib8Lzq722822UV8rThV5IH-L08FNnJHfZ7OKtk,1747
|
|
164
163
|
hikyuu/draw/drawplot/__init__.py,sha256=uvS2697BlDqs3aEPjMkCxmBl68_Vmhf8ZohUCDhwHko,10362
|
|
165
|
-
hikyuu/draw/drawplot/__init__.pyi,sha256=
|
|
164
|
+
hikyuu/draw/drawplot/__init__.pyi,sha256=sgQ9BUiJuIQadTDbdVgiNtrA6g7jak8BZEBbakJ61fo,6731
|
|
166
165
|
hikyuu/draw/drawplot/bokeh_draw.py,sha256=87LkP1W4KDgFZzuFOcwYY0j_7aZtxwqMKNldkMPy2kQ,20249
|
|
167
|
-
hikyuu/draw/drawplot/bokeh_draw.pyi,sha256=
|
|
166
|
+
hikyuu/draw/drawplot/bokeh_draw.pyi,sha256=oVob4ae2Ilvn3KmrL8P-bHUky9gH76w4qFA-24NzBow,76874
|
|
168
167
|
hikyuu/draw/drawplot/common.py,sha256=Cq4jMg3-LrvXHVIFhac6iX5lWpmYMLOyJCGbn2BiLXE,3186
|
|
169
|
-
hikyuu/draw/drawplot/common.pyi,sha256=
|
|
168
|
+
hikyuu/draw/drawplot/common.pyi,sha256=W3yY8Te3bacMd2CX7w73YnJ4mcmpItpjksFQdDnlBjQ,362
|
|
170
169
|
hikyuu/draw/drawplot/echarts_draw.py,sha256=h9tplR4KS32tcC9D8JdG7_x7bhDsPacTMbbChK6fwKY,21054
|
|
171
|
-
hikyuu/draw/drawplot/echarts_draw.pyi,sha256=
|
|
170
|
+
hikyuu/draw/drawplot/echarts_draw.pyi,sha256=v_KpJ8YPXXtRbkgidLzUAq-JXFRmFwRz5psceSxEIYM,71845
|
|
172
171
|
hikyuu/draw/drawplot/matplotlib_draw.py,sha256=XLNUbWUUyLInWUDdxzXb07Q9WFlcjRPn0xzKJJZJ-3w,60869
|
|
173
|
-
hikyuu/draw/drawplot/matplotlib_draw.pyi,sha256=
|
|
172
|
+
hikyuu/draw/drawplot/matplotlib_draw.pyi,sha256=0THHyUr9Lsb2bPtkNkJWnL7nfG__jvSrtA3up52qIs4,95527
|
|
174
173
|
hikyuu/draw/drawplot/icon/1.png,sha256=I21nZoJ2secsZZYSeWcSzzgtKsuKIJtBeFKQ7xp_trU,786
|
|
175
174
|
hikyuu/draw/drawplot/icon/10.png,sha256=o8cfsnmu0dltqyh3F-U-6IxJz9HvSFing1b11UaLlSQ,570
|
|
176
175
|
hikyuu/draw/drawplot/icon/11.png,sha256=6ayNsr6Ym30jpv5Y1NGOtf8Ne9__WiA8VL4IwGsB73Y,852
|
|
@@ -294,7 +293,7 @@ hikyuu/include/hikyuu/Block.h,sha256=ejN2sTGeTqzxVvstSLy7X2228sDCHUdUcmeESzdyrck
|
|
|
294
293
|
hikyuu/include/hikyuu/DataType.h,sha256=v6GWx3bFZ7YLpId_s9OAGnPLfZWbCBbUOImjZ7En3VQ,4022
|
|
295
294
|
hikyuu/include/hikyuu/GlobalInitializer.h,sha256=ylEt6XXBZMyiCSVQnRJCmfAthK6n60tMMV55ff1VHqE,725
|
|
296
295
|
hikyuu/include/hikyuu/HistoryFinanceInfo.h,sha256=pDrRFEGLd2DCP6Vjix-z5D0FIW9vkwqF0ZgsSszBmS4,957
|
|
297
|
-
hikyuu/include/hikyuu/KData.h,sha256=
|
|
296
|
+
hikyuu/include/hikyuu/KData.h,sha256=SdJsiVpUrZ0A_sIl731HQ8MMlnq-RCMLUUH6AgR70dA,9176
|
|
298
297
|
hikyuu/include/hikyuu/KDataImp.h,sha256=GmR0vHfU42MrE7vVFSrehjq7tZ3-0FS8LAhc3C6zFCk,1528
|
|
299
298
|
hikyuu/include/hikyuu/KDataPrivatedBufferImp.h,sha256=dLkDBOwzBnmDWWxkKRnR8gzzCxCNxItqqPJdqzIYzG0,1737
|
|
300
299
|
hikyuu/include/hikyuu/KDataSharedBufferImp.h,sha256=NAfC0eIuqb3sUg7ik4hfSyrW4b-jgqg-VLYGf9mnoak,1480
|
|
@@ -316,7 +315,7 @@ hikyuu/include/hikyuu/debug.h,sha256=r54YJUkujUt5D9Xj11fpIw9c93kZsqU3ykljXBsqxo0
|
|
|
316
315
|
hikyuu/include/hikyuu/doc.h,sha256=20HVEEYZPyudKL9fGaLf_JfoOid-UPWjmU024JOEJs4,7075
|
|
317
316
|
hikyuu/include/hikyuu/hikyuu.h,sha256=D4n8yy8BLhRyceGCzAIbrTCoyvEOGa0NtygcQW6accI,1583
|
|
318
317
|
hikyuu/include/hikyuu/lang.h,sha256=KQ4DPeuRatpGnFUeAO1XfAolu70-y99biqjK-lO7j7Y,500
|
|
319
|
-
hikyuu/include/hikyuu/version.h,sha256=
|
|
318
|
+
hikyuu/include/hikyuu/version.h,sha256=hNmUIT1rLdb2hcik38HGPJr-zMkWRRB2RPLMoxNeUkw,507
|
|
320
319
|
hikyuu/include/hikyuu/analysis/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
321
320
|
hikyuu/include/hikyuu/analysis/analysis_sys.h,sha256=WJpfpLeKqpUjGFwmiRf_NCX8NvAHqBRuPDxMi4n-iVs,3239
|
|
322
321
|
hikyuu/include/hikyuu/analysis/combinate.h,sha256=--OhYTVLQ8bUNgl47V0uNO0IjSULxu7bXhYWbjNY4Ig,4196
|
|
@@ -644,7 +643,7 @@ hikyuu/include/hikyuu/plugin/interface/plugins.h,sha256=w5yY9bfviO10m4UvdqRM30E-
|
|
|
644
643
|
hikyuu/include/hikyuu/python/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
645
644
|
hikyuu/include/hikyuu/python/convert_any.h,sha256=wHiokw1XnX82eyGQ_IRjtvBw6zEd0ANUby-FQ67pqX8,10693
|
|
646
645
|
hikyuu/include/hikyuu/python/pickle_support.h,sha256=VOZ371r8VQixi95BJ5I9uqZnzVvK-wNqtQ4F0SDl27g,4987
|
|
647
|
-
hikyuu/include/hikyuu/python/pybind_utils.h,sha256=
|
|
646
|
+
hikyuu/include/hikyuu/python/pybind_utils.h,sha256=VU4QBe_AchNkStqcUkphqHZVjV_Y9Xn0VFHNLrSDNek,4901
|
|
648
647
|
hikyuu/include/hikyuu/serialization/Block_serialization.h,sha256=bb6ZjV2XBEpBiks_r1vVs2HFJG3RpAYdMIxKR54XSGc,1635
|
|
649
648
|
hikyuu/include/hikyuu/serialization/Datetime_serialization.h,sha256=3H3njGHTsce2KGcO762T7dPyhc-_0J-21WTY43exv94,1008
|
|
650
649
|
hikyuu/include/hikyuu/serialization/KData_serialization.h,sha256=2u-qn142CsVF53ufSEcgtMxEh-4wV7-9WHJ1a9lM3AI,1107
|
|
@@ -986,14 +985,14 @@ hikyuu/indicator/__init__.py,sha256=A_oVEd2SgB7YaGRsPvYojACWKJOFnw2pkyjUxsNf2dw,
|
|
|
986
985
|
hikyuu/indicator/indicator.py,sha256=YJBrb9130p1Pz9yDuGEsCIRzLQgbb_gA2XiHP7k_Xwg,4385
|
|
987
986
|
hikyuu/indicator/pyind.py,sha256=dRWOUkidDOpozCdsTtj_84nuV4fdUKWcddGTC0mEbFk,1735
|
|
988
987
|
hikyuu/plugin/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
989
|
-
hikyuu/plugin/backtest.dll,sha256=
|
|
990
|
-
hikyuu/plugin/clickhousedriver.dll,sha256=
|
|
991
|
-
hikyuu/plugin/dataserver.dll,sha256=
|
|
988
|
+
hikyuu/plugin/backtest.dll,sha256=CfzjsHRTpNwmde9Crt8NPTEvlVJhH1ehXymv4eMh0rM,4415488
|
|
989
|
+
hikyuu/plugin/clickhousedriver.dll,sha256=t7a_B0r5iCbObmUgerP-GhvDnJdwXo6baRytpQR9oRE,5410816
|
|
990
|
+
hikyuu/plugin/dataserver.dll,sha256=vDZreKr_J0hjaCA_WwlVW_mSDfRj7t8pLA-aHPkPZWI,5623296
|
|
992
991
|
hikyuu/plugin/device.dll,sha256=pNPfKzeU6QHzfgTfrU2c2v5huLVm2SwNcObU7xwX76A,4463104
|
|
993
|
-
hikyuu/plugin/extind.dll,sha256=
|
|
994
|
-
hikyuu/plugin/hkuextra.dll,sha256=
|
|
995
|
-
hikyuu/plugin/import2hdf5.dll,sha256=
|
|
996
|
-
hikyuu/plugin/tmreport.dll,sha256=
|
|
992
|
+
hikyuu/plugin/extind.dll,sha256=SksRRmoexsjYQas4e6tD3jNzQv5yUdiX6zVpALwPRcU,4882432
|
|
993
|
+
hikyuu/plugin/hkuextra.dll,sha256=KnKG-dE0WwvlCjL6l5hOBmT4BbS65v9mixJk4OK-TUs,9883648
|
|
994
|
+
hikyuu/plugin/import2hdf5.dll,sha256=q1zt6zTxRmrqMJbgU4JP0uNK3ZYUf-hcabXAO2o0wWU,4470784
|
|
995
|
+
hikyuu/plugin/tmreport.dll,sha256=NYu0Ifs7Ce-eIKEcMKHkrpDQPFi2kdcQKIRMXlu8k58,4416000
|
|
997
996
|
hikyuu/shell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
998
997
|
hikyuu/shell/cmdserver.py,sha256=EktCYCQ5BwrrIJmiic6lmM-ZFvoFQh_y6L6uqT-2zt8,3328
|
|
999
998
|
hikyuu/shell/hkucmd.py,sha256=YrVM7LERwIu52_n7EOHi9Qkpc-_h3f9zhUlKRCpDh_8,3515
|
|
@@ -1032,33 +1031,32 @@ hikyuu/tools/h5_data_clear.py,sha256=mbro9e9H2GTMjO_-1mDPBEbDPec8iydL6An2aOSQuAg
|
|
|
1032
1031
|
hikyuu/tools/mysql_clear_last_day_data.py,sha256=BYiPMHm-wMXiJdRnwEVrlDii3ohK3wNb7LbsP4n1o_s,1692
|
|
1033
1032
|
hikyuu/tools/update_block_info.py,sha256=WH9dMsdP8vciY3zp2RgJgZBmZoDGnBANbFoTVtjyhzg,5011
|
|
1034
1033
|
hikyuu/trade_manage/__init__.py,sha256=T70USQgynFJnr4oRButUBc3p3wRkzBvm4HCS9H8gRGE,1393
|
|
1035
|
-
hikyuu/trade_manage/__init__.pyi,sha256=
|
|
1034
|
+
hikyuu/trade_manage/__init__.pyi,sha256=ip29DFSuaE58PNizxtgRs_DmkG2HN1ho5qy-SGdNalo,66991
|
|
1036
1035
|
hikyuu/trade_manage/broker.py,sha256=qxksV54hTYH5P9X5h2WchLZpXXo2aDzsRcvugViH-zk,4121
|
|
1037
|
-
hikyuu/trade_manage/broker.pyi,sha256=
|
|
1036
|
+
hikyuu/trade_manage/broker.pyi,sha256=t3P_Y6lsWfzAiHu4q9lVsKWRVMHCiokt5dIg_ocLowo,2201
|
|
1038
1037
|
hikyuu/trade_manage/broker_easytrader.py,sha256=7zS3-2ggWJ2tR0Djae0RTXoYvd7IP1YZNImQsbRRFS4,2343
|
|
1039
|
-
hikyuu/trade_manage/broker_easytrader.pyi,sha256=
|
|
1038
|
+
hikyuu/trade_manage/broker_easytrader.pyi,sha256=7_VNik9_C2KEInZvX2jOcTVKkTx8qnETAXGv9t4lCKw,745
|
|
1040
1039
|
hikyuu/trade_manage/broker_mail.py,sha256=xgoPr9AqjxEPU58LTsGpEs_JdVcsqWPRB4QYtctyhaM,4054
|
|
1041
|
-
hikyuu/trade_manage/broker_mail.pyi,sha256=
|
|
1040
|
+
hikyuu/trade_manage/broker_mail.pyi,sha256=_tvQwAxLEQeB4C8AjbXVbYoM23ddgWXRV-nihecjHnI,2086
|
|
1042
1041
|
hikyuu/trade_manage/trade.py,sha256=iMIkOrx0jcmZ2oUjXNsjyVAOcXFbcfT3xRlIrxmHLoo,2278
|
|
1043
|
-
hikyuu/trade_manage/trade.pyi,sha256=
|
|
1042
|
+
hikyuu/trade_manage/trade.pyi,sha256=WDrAK1Gv-dJNHr3Zd12aklWmc0u3rbWrPyq27Fn_6mQ,66500
|
|
1044
1043
|
hikyuu/trade_sys/__init__.py,sha256=9_o0dyUUUzvpX3ZZo8mrV2LEjufT348Nx4iefKisXnU,1883
|
|
1045
1044
|
hikyuu/trade_sys/trade_sys.py,sha256=OfssOZn5JaFU6by_GRo84NFN9gtKTsELkIYOiNsoEtw,8836
|
|
1046
1045
|
hikyuu/util/__init__.py,sha256=JFS99i71OVIFoNjIX471aTwjgljxEgpOeq57XkRLJNc,1166
|
|
1047
|
-
hikyuu/util/__init__.pyi,sha256=
|
|
1046
|
+
hikyuu/util/__init__.pyi,sha256=LJY_JO91wxq3wMdGJj1gcN50blmmcBbt1gfTebc2p9o,2922
|
|
1048
1047
|
hikyuu/util/check.py,sha256=qOq6-y0w1Lg5HaFZ2gSJiWCqg1rSv62tc51BilR4NHQ,6006
|
|
1049
|
-
hikyuu/util/check.pyi,sha256=
|
|
1048
|
+
hikyuu/util/check.pyi,sha256=yql91SGusKQnDEUNh5dFxqlBFEmmxWc7oDlkP0z_VZ8,2604
|
|
1050
1049
|
hikyuu/util/mylog.py,sha256=2LowCruIDCLmwyWLH7mvD764EKVvOg9HM16C_S4PYIE,10744
|
|
1051
|
-
hikyuu/util/mylog.pyi,sha256=
|
|
1050
|
+
hikyuu/util/mylog.pyi,sha256=U2aLHhSnsw0R215mSJs3jUNgpBBshiUWchYp7Cpoglk,2717
|
|
1052
1051
|
hikyuu/util/notebook.py,sha256=zToRjn0gqrs11SC6CK3IvJUWcerBMID_byxSn255BWk,1159
|
|
1053
|
-
hikyuu/util/notebook.pyi,sha256=
|
|
1052
|
+
hikyuu/util/notebook.pyi,sha256=mTCfKaC8ItfDR7GSWbfXajvvTXr5CI40H8yStKRjTdg,564
|
|
1054
1053
|
hikyuu/util/singleton.py,sha256=ADnNpIUK63Q7iqkVv9XVptAPHg3iPlPGv1eYCPXjn34,793
|
|
1055
|
-
hikyuu/util/singleton.pyi,sha256=
|
|
1054
|
+
hikyuu/util/singleton.pyi,sha256=cTVMkW3IrqNmGtS0vcZcKyLn6JewCckgiq-WiPhYoCU,549
|
|
1056
1055
|
hikyuu/util/slice.py,sha256=ZPvGFc7MO3USnAS4ADMnjJaPqTRFV0nXY_ssgfysxJ4,1759
|
|
1057
1056
|
hikyuu/util/slice.pyi,sha256=9YS29Ehh3qbGC0F6Ieur25VcuftQL7C4c5nxmybWKHU,243
|
|
1058
1057
|
hikyuu/util/timeout.py,sha256=n1KdeXfXgh6fJKdrxmmL5PU6zIkeuVp1LKMwll8okDo,3031
|
|
1059
|
-
hikyuu-2.6.8.dist-info/
|
|
1060
|
-
hikyuu-2.6.8.dist-info/
|
|
1061
|
-
hikyuu-2.6.8.dist-info/
|
|
1062
|
-
hikyuu-2.6.8.dist-info/
|
|
1063
|
-
hikyuu-2.6.8.dist-info/
|
|
1064
|
-
hikyuu-2.6.8.dist-info/RECORD,,
|
|
1058
|
+
hikyuu-2.6.8.2.dist-info/METADATA,sha256=iIB2cassIAAapbnU9u2z7Z7mY0r7LkP3_nqmPK9CGmM,13211
|
|
1059
|
+
hikyuu-2.6.8.2.dist-info/WHEEL,sha256=ZjXRCNaQ9YSypEK2TE0LRB0sy2OVXSszb4Sx1XjM99k,97
|
|
1060
|
+
hikyuu-2.6.8.2.dist-info/entry_points.txt,sha256=lKAXjEs7kBs3KiRG88yAXos2X9L2-zQ_YQh0DsKE3kY,137
|
|
1061
|
+
hikyuu-2.6.8.2.dist-info/top_level.txt,sha256=7zH52PNNaANOUZcGotzJzSfLMIatL9ViyYLYRtofM2s,4339
|
|
1062
|
+
hikyuu-2.6.8.2.dist-info/RECORD,,
|
hikyuu/setup.py
DELETED
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env python
|
|
2
|
-
#-*- coding:utf-8 -*-
|
|
3
|
-
|
|
4
|
-
from setuptools import setup, find_packages
|
|
5
|
-
import sys
|
|
6
|
-
import os
|
|
7
|
-
|
|
8
|
-
if sys.argv[-1] == 'publish':
|
|
9
|
-
os.system("python setup.py bdist_wheel --python-tag cp35 -p win-amd64")
|
|
10
|
-
#python setup.py bdist_wheel --python-tag cp35 -p linux_x86_64
|
|
11
|
-
os.system("twine upload dist/*")
|
|
12
|
-
sys.exit()
|
|
13
|
-
|
|
14
|
-
hku_name = "Hikyuu"
|
|
15
|
-
hku_version = "1.0.9"
|
|
16
|
-
hku_author = "fasiondog"
|
|
17
|
-
hku_author_email = "fasiondog@sina.com"
|
|
18
|
-
|
|
19
|
-
hku_license = "MIT"
|
|
20
|
-
hku_keywords = ("quant", "trade", "System Trading", "backtester", "量化", "程序化交易", "量化交易", "系统交易")
|
|
21
|
-
hku_platforms = "Independant"
|
|
22
|
-
hku_url = "http://hikyuu.org/"
|
|
23
|
-
|
|
24
|
-
hku_description = "Hikyuu Quant Framework for System Trading Analysis and backtester"
|
|
25
|
-
with open("README.rst", encoding='utf-8') as f:
|
|
26
|
-
hku_long_description = f.read()
|
|
27
|
-
|
|
28
|
-
if sys.platform == 'win32':
|
|
29
|
-
hku_data_files = [('Lib/site-packages/hikyuu', ['hikyuu/hikyuu.dll']),
|
|
30
|
-
('Lib/site-packages/hikyuu', ['hikyuu/hikyuu_utils.dll']),
|
|
31
|
-
('Lib/site-packages/hikyuu', ['hikyuu/sqlite3.dll']),
|
|
32
|
-
('Lib/site-packages/hikyuu', ['hikyuu/importdata.exe']),
|
|
33
|
-
('Lib/site-packages/hikyuu', ['hikyuu/boost_date_time-vc141-mt-x64-1_68.dll']),
|
|
34
|
-
('Lib/site-packages/hikyuu', ['hikyuu/boost_filesystem-vc141-mt-x64-1_68.dll']),
|
|
35
|
-
('Lib/site-packages/hikyuu', ['hikyuu/boost_python35-vc141-mt-x64-1_68.dll']),
|
|
36
|
-
('Lib/site-packages/hikyuu', ['hikyuu/boost_serialization-vc141-mt-x64-1_68.dll']),
|
|
37
|
-
('Lib/site-packages/hikyuu', ['hikyuu/boost_system-vc141-mt-x64-1_68.dll']),
|
|
38
|
-
('Lib/site-packages/hikyuu', ['hikyuu/libmysql.dll']),
|
|
39
|
-
('Lib/site-packages/hikyuu', ['hikyuu/hdf5.dll']),
|
|
40
|
-
('Lib/site-packages/hikyuu', ['hikyuu/hdf5_hl.dll']),
|
|
41
|
-
('Lib/site-packages/hikyuu', ['hikyuu/hdf5_cpp.dll']),
|
|
42
|
-
('Lib/site-packages/hikyuu', ['hikyuu/hdf5_hl_cpp.dll']),
|
|
43
|
-
('Lib/site-packages/hikyuu', ['hikyuu/szip.dll']),
|
|
44
|
-
('Lib/site-packages/hikyuu', ['hikyuu/zlib.dll']),
|
|
45
|
-
('Lib/site-packages/hikyuu', ['hikyuu/concrt140.dll']),
|
|
46
|
-
('Lib/site-packages/hikyuu', ['hikyuu/vcruntime140.dll'])]
|
|
47
|
-
else:
|
|
48
|
-
hku_data_files = []
|
|
49
|
-
|
|
50
|
-
setup(
|
|
51
|
-
name = hku_name,
|
|
52
|
-
version = hku_version,
|
|
53
|
-
description = hku_description,
|
|
54
|
-
long_description = hku_long_description,
|
|
55
|
-
author = hku_author,
|
|
56
|
-
author_email = hku_author_email,
|
|
57
|
-
|
|
58
|
-
license = hku_license,
|
|
59
|
-
keywords = hku_keywords,
|
|
60
|
-
platforms = hku_platforms,
|
|
61
|
-
url = hku_url,
|
|
62
|
-
|
|
63
|
-
packages = find_packages(),
|
|
64
|
-
zip_safe = False,
|
|
65
|
-
include_package_data=True,
|
|
66
|
-
package_data = {
|
|
67
|
-
'': ['*.rst', '*.pyd', '*.ini', '*.sql', '*.properties', '*.xml', 'LICENSE.txt', 'lib*.so.*'],
|
|
68
|
-
},
|
|
69
|
-
|
|
70
|
-
data_files = hku_data_files,
|
|
71
|
-
|
|
72
|
-
classifiers=[
|
|
73
|
-
# How mature is this project? Common values are
|
|
74
|
-
# 3 - Alpha
|
|
75
|
-
# 4 - Beta
|
|
76
|
-
# 5 - Production/Stable
|
|
77
|
-
'Development Status :: 3 - Alpha',
|
|
78
|
-
|
|
79
|
-
# Indicate who your project is intended for
|
|
80
|
-
'Intended Audience :: Developers',
|
|
81
|
-
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
82
|
-
'Topic :: Office/Business :: Financial',
|
|
83
|
-
'Topic :: Office/Business :: Financial :: Investment',
|
|
84
|
-
'Topic :: Scientific/Engineering :: Mathematics',
|
|
85
|
-
|
|
86
|
-
# Pick your license as you wish (should match "license" above)
|
|
87
|
-
'License :: OSI Approved :: MIT License',
|
|
88
|
-
|
|
89
|
-
'Operating System :: Microsoft :: Windows',
|
|
90
|
-
|
|
91
|
-
# Specify the Python versions you support here. In particular, ensure
|
|
92
|
-
# that you indicate whether you support Python 2, Python 3 or both.
|
|
93
|
-
'Programming Language :: Python :: 3',
|
|
94
|
-
'Programming Language :: Python :: 3.5',
|
|
95
|
-
],
|
|
96
|
-
|
|
97
|
-
install_requires=[
|
|
98
|
-
'matplotlib>=1.5.0',
|
|
99
|
-
#'pandas>=0.17.1',
|
|
100
|
-
#'tushare>=0.8.2',
|
|
101
|
-
#'pyperclip>=1.5.27',
|
|
102
|
-
'pyecharts>=0.2.7',
|
|
103
|
-
],
|
|
104
|
-
)
|