https://github.com/bukosabino/ta
Revision d6ebce1e3a4fe723f8d637373d2a8d5535f6f4d5 authored by Dario Lopez Padial on 07 November 2019, 16:02:08 UTC, committed by Dario Lopez Padial on 07 November 2019, 16:02:08 UTC
1 parent 344c08c
Raw File
Tip revision: d6ebce1e3a4fe723f8d637373d2a8d5535f6f4d5 authored by Dario Lopez Padial on 07 November 2019, 16:02:08 UTC
fixing bug related to parameters
Tip revision: d6ebce1
setup.py
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
    name = 'ta',
    packages = ['ta'],
    version = '0.4.7',
    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.7',
    keywords = ['technical analysis', 'python3', 'pandas'],
    license='The MIT License (MIT)',
    classifiers = [],
)
back to top