4 Star 2 Fork 1

mirrors_twopirllc/pandas-ta

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 2.44 KB
一键复制 编辑 原始数据 按行查看 历史
Kevin Johnson 提交于 2024-06-23 17:50 . Update setup.py
# -*- coding: utf-8 -*-
from distutils.core import setup
long_description = "An easy to use Python 3 Pandas Extension with 130+ Technical Analysis Indicators. Can be called from a Pandas DataFrame or standalone like TA-Lib. Correlation tested with TA-Lib."
setup(
name="pandas_ta",
packages=[
"pandas_ta",
"pandas_ta.candles",
"pandas_ta.cycles",
"pandas_ta.momentum",
"pandas_ta.overlap",
"pandas_ta.performance",
"pandas_ta.statistics",
"pandas_ta.trend",
"pandas_ta.utils",
"pandas_ta.utils.data",
"pandas_ta.volatility",
"pandas_ta.volume"
],
version=".".join(("0", "3", "14b")),
description=long_description,
long_description=long_description,
author="Kevin Johnson",
author_email="appliedmathkj@gmail.com",
url="https://github.com/twopirllc/pandas-ta",
maintainer="Kevin Johnson",
maintainer_email="appliedmathkj@gmail.com",
download_url="https://github.com/twopirllc/pandas-ta.git",
keywords=["technical analysis", "trading", "python3", "pandas"],
license="The MIT License (MIT)",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"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",
"Topic :: Scientific/Engineering :: Information Analysis",
],
package_data={
"data": ["data/*.csv"],
},
install_requires=[
"numpy==1.26.4",
"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": [
"alphaVantage-api", "matplotlib", "mplfinance", "scipy",
"sklearn", "statsmodels", "stochastic",
"talib", "tqdm", "vectorbt", "yfinance",
],
"test": ["ta-lib"],
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_twopirllc/pandas-ta.git
git@gitee.com:mirrors_twopirllc/pandas-ta.git
mirrors_twopirllc
pandas-ta
pandas-ta
main

搜索帮助