1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-01 18:11:18 +08:00

update setup

This commit is contained in:
bxdd
2020-12-10 07:23:20 +00:00
committed by you-n-g
parent 59282c8965
commit eb67f1037a

View File

@@ -1,7 +1,5 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# -*- coding: utf-8 -*-
import io
import os
import numpy
@@ -96,12 +94,7 @@ setup(
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=REQUIRES_PYTHON,
packages=find_packages(
exclude=(
"tests",
"examples",
)
),
packages=find_packages(exclude=("tests",)),
# if your package is a single module, use this instead of 'packages':
# py_modules=['qlib'],
entry_points={
@@ -128,4 +121,4 @@ setup(
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)
)