forked from bukosabino/ta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 1.29 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
33
34
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name="ta",
packages=["ta"],
version="0.10.2",
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 built 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",
],
download_url="https://github.com/bukosabino/ta/tarball/0.10.1",
keywords=["technical analysis", "python3", "pandas"],
license="The MIT License (MIT)",
license_files=["LICENSE"],
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",
},
)