https://github.com/bukosabino/ta
Raw File
Tip revision: eb858b425d4e77693a85c229b5350622febca932 authored by Dario Lopez Padial on 18 May 2019, 17:13:33 UTC
prepare for new version
Tip revision: eb858b4
setup.py
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
    name = 'ta',
    packages = ['ta'],
    version = '0.4.5',
    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 builded 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',
        'scikit-learn'
    ],
    download_url = 'https://github.com/bukosabino/ta/tarball/0.4.5',
    keywords = ['technical analysis', 'python3', 'pandas'],
    license='The MIT License (MIT)',
    classifiers = [],
)
back to top