forked from bukosabino/ta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (32 loc) · 1.28 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name = 'ta',
packages = ['ta'],
version = '0.5.11',
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.5.11',
keywords = ['technical analysis', 'python3', 'pandas'],
license='The MIT License (MIT)',
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',
},
)