1 Star 0 Fork 2

昼.../huobi

forked from Neo/huobi 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.67 KB
一键复制 编辑 原始数据 按行查看 历史
hadrianl 提交于 2019-07-15 09:10 . debug, 0.5.6
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2018/5/29 0029 14:10
# @Author : Hadrianl
# @File : setup.py
# @Contact : 137150224@qq.com
from setuptools import setup, find_packages
__version__ = "0.5.6"
with open("README.md", "r", encoding='utf-8') as rm:
long_description = rm.read()
requires = ['websocket-client>=0.53',
'requests',
'pymongo',
'pyzmq',
'pandas',
'requests-futures',
'ecdsa',
'click']
hb_packages = ['huobitrade', 'huobitrade/extra']
setup(name='huobitrade',
version=__version__,
description='HuoBi Trading Framwork(python)',
long_description=long_description,
long_description_content_type="text/markdown",
author='Hadrianl',
author_email='137150224@qq.com',
url='https://hadrianl.github.io/huobi/',
packages=hb_packages,
entry_points={
"console_scripts": [
"huobitrade = huobitrade.main:entry_point"
]
},
classifiers=(
"Development Status :: 5 - Production/Stable",
"Natural Language :: Chinese (Simplified)",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Version Control :: Git"
),
install_requires=requires)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangyaoo/huobi.git
git@gitee.com:zhangyaoo/huobi.git
zhangyaoo
huobi
huobi
master

搜索帮助