https://github.com/bukosabino/ta
Raw File
Tip revision: 19203a157a6b4d5bd7a8f799bafbb380f9a656d8 authored by Darío López Padial on 09 January 2022, 20:56:27 UTC
Merge pull request #281 from bukosabino/feature/numpy-vulnerability
Tip revision: 19203a1
setup.py
# -*- coding: utf-8 -*-
from distutils.core import setup

setup(
    name="ta",
    packages=["ta"],
    version="0.8.2",
    description="Technical Analysis Library in Python",
    long_description="It is a Technical Analysis library to financial time series datasets. You can use to do feature engineering. It is built on Python Pandas library.",
    author="Dario Lopez Padial (Bukosabino)",
    author_email="Bukosabino@gmail.com",
    url="https://github.com/bukosabino/ta",
    maintainer="Dario Lopez Padial (Bukosabino)",
    maintainer_email="Bukosabino@gmail.com",
    install_requires=[
        "numpy",
        "pandas",
    ],
    download_url="https://github.com/bukosabino/ta/tarball/0.8.2",
    keywords=["technical analysis", "python3", "pandas"],
    license="The MIT License (MIT)",
    license_files=["LICENSE"],
    classifiers=[
        "Intended Audience :: Financial and Insurance Industry",
        "Programming Language :: Python :: 3.6",
        "Programming Language :: Python :: 3.7",
        "License :: OSI Approved :: MIT License",
    ],
    project_urls={
        "Documentation": "https://technical-analysis-library-in-python.readthedocs.io/en/latest/",
        "Bug Reports": "https://github.com/bukosabino/ta/issues",
        "Source": "https://github.com/bukosabino/ta",
    },
)
back to top