-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
22 lines (20 loc) · 962 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='ta_py',
version='1.6.0',
author="Nino Kroesen",
author_email="[email protected]",
description="ta.py is a Python package for dealing with financial technical analysis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Bitvested/ta.py",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords=["financial", "technical", "analysis", "ta", "simple", "weighted", "exponential", "sma", "wma", "ema", "aroon", "rsi", "stochastics", "macd", "atr", "vwap", "lsma", "least", "squares", "average", "kama", "variance", "correlation", "aad", "mad", "ssd", "kmeans", "monte", "carlo"],
)