代码拉取完成,页面将自动刷新
# -*- coding: utf-8 -*-
from distutils.core import setup
long_description = "An easy to use Python 3 Pandas Extension with 80+ Technical Analysis Indicators. Can be called from a Pandas DataFrame or standalone like TA-Lib."
setup(
name ="pandas_ta",
packages =['pandas_ta', 'pandas_ta.momentum', 'pandas_ta.overlap', 'pandas_ta.performance', 'pandas_ta.statistics', 'pandas_ta.trend', 'pandas_ta.volatility', 'pandas_ta.volume'],
version ="0.1.37b",
description =long_description,
long_description =long_description,
author ="Kevin Johnson",
url ="https://github.com/twopirllc/pandas-ta",
maintainer ="Kevin Johnson",
# install_requires=['numpy','pandas'],
download_url ="https://github.com/twopirllc/pandas-ta.git",
keywords =['technical analysis', 'python3', 'pandas'],
license ="The MIT License (MIT)",
classifiers =[
'Programming Language :: Python :: 3.7',
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Science/Research',
'Topic :: Office/Business :: Financial',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Scientific/Engineering :: Information Analysis',
],
package_data={
'data': ['data/*.csv'],
},
install_requires =['pandas'],
# List additional groups of dependencies here (e.g. development dependencies).
# You can install these using the following syntax, for example:
# $ pip install -e .[dev,test]
extras_require = {
'dev': ['ta-lib', 'jupyterlab'],
'test': ['ta-lib'],
},
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。