1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-03 19:10:58 +08:00

Update setup

This commit is contained in:
Jactus
2020-12-04 10:47:20 +08:00
parent f237a344c3
commit 07fb9031c6
2 changed files with 7 additions and 2 deletions

View File

@@ -191,7 +191,7 @@ def gen_and_save_md_table(metrics):
# function to run the all the models
@only_allow_defined_args
def run(times=1, models=None, dataset='Alpha360', exclude=False):
def run(times=1, models=None, dataset="Alpha360", exclude=False):
"""
Please be aware that this function can only work under Linux. MacOS and Windows will be supported in the future.
Any PR to enhance this method is highly welcomed.

View File

@@ -94,7 +94,12 @@ setup(
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=REQUIRES_PYTHON,
packages=find_packages(exclude=("tests",)),
packages=find_packages(
exclude=(
"tests",
"examples",
)
),
# if your package is a single module, use this instead of 'packages':
# py_modules=['qlib'],
entry_points={