forked from bukosabino/ta
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
22 lines (22 loc) · 842 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name = 'ta',
packages = ['ta'],
version = '0.3.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 = '[email protected]',
url = 'https://github.com/bukosabino/ta',
maintainer='Dario Lopez Padial (Bukosabino)',
maintainer_email='[email protected]',
install_requires=[
'numpy',
'pandas'
],
download_url = 'https://github.com/bukosabino/ta/tarball/0.3.7',
keywords = ['technical analysis', 'python3', 'pandas'],
license='The MIT License (MIT)',
classifiers = [],
)