1 Star 1 Fork 0

rexiyz/py-futu-api

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.68 KB
一键复制 编辑 原始数据 按行查看 历史
byblehua 提交于 2021-06-17 15:17 . 同步5.4版本内容
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2017 Futu, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sys
from os.path import dirname, join
import sys
from setuptools import (
find_packages,
setup,
)
is_py2 = sys.version_info[0] == 2
with open(join(dirname(__file__), 'futu/VERSION.txt'), 'rb') as f:
version = f.read().decode('ascii').strip()
with open("README.md", "r", encoding='utf-8') as fh:
long_desc = fh.read()
install_requires = ["pandas",
"simplejson",
"protobuf==3.5.1",
"PyCryptodome",
]
if is_py2:
install_requires.append("selectors2")
setup(
name='futu-api',
version=version,
description='Futu Quantitative Trading API',
long_description=long_desc,
long_description_content_type="text/markdown",
classifiers=[],
keywords='Futu HK/US Stock Quant Trading API',
author='Futu, Inc.',
author_email='ftdev@futunn.com',
url='https://github.com/FutunnOpen/py-futu-api',
license='Apache License 2.0',
packages=find_packages(exclude=[]),
package_data={'': ['*.*']},
include_package_data=True,
install_requires=install_requires
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/rexiyz/py-futu-api.git
git@gitee.com:rexiyz/py-futu-api.git
rexiyz
py-futu-api
py-futu-api
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385