https://github.com/bukosabino/ta
Raw File
Tip revision: 8b926c5a0ef0397c1da080978a56453babd2de35 authored by Dario Lopez Padial on 10 April 2019, 10:36:20 UTC
code style max line length 119
Tip revision: 8b926c5
setup.py
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
    name = 'ta',
    packages = ['ta'],
    version = '0.4.0',
    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=open('requirements.txt').readlines(),
    download_url = 'https://github.com/bukosabino/ta/tarball/0.4.0',
    keywords = ['technical analysis', 'python3', 'pandas'],
    license='The MIT License (MIT)',
    classifiers = [],
)
back to top