-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (63 loc) · 2.14 KB
/
Copy pathsetup.py
File metadata and controls
64 lines (63 loc) · 2.14 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from setuptools import setup, find_packages
setup(
name="openalgo",
version="2.0.2",
author="Rajandran R",
author_email="rajandran@openalgo.in",
description="A Python library for interacting with OpenAlgo's trading APIs with high-performance technical indicators",
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type="text/markdown",
url="https://openalgo.in",
packages=find_packages(),
install_requires=[
"httpx>=0.27.0",
"pandas>=2.2.0",
"websocket-client>=1.8.0",
"numpy>=2.0.0",
],
# Indicators run on a Rust core (openalgo._oaindicators); numba/llvmlite are no
# longer required. The legacy `openalgo[indicators]` extra has been removed.
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.12",
keywords=[
"trading",
"algorithmic-trading",
"finance",
"websocket",
"market-data",
"real-time",
"stock-market",
"api-wrapper",
"openalgo",
"market-data",
"trading-api",
"stock-trading",
"technical-analysis",
"indicators",
"rsi",
"macd",
"sma",
"ema",
"bollinger-bands",
"supertrend",
"atr",
"volume-analysis"
],
project_urls={
"Documentation": "https://docs.openalgo.in",
"Source": "https://github.com/openalgo/openalgo-python",
"Tracker": "https://github.com/openalgo/openalgo-python/issues",
},
)