-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
109 lines (107 loc) · 2.44 KB
/
pyproject.toml
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[build-system]
requires = ["setuptools >= 56.0"]
build-backend = "setuptools.build_meta"
[project]
name = "fenix"
dynamic = ["version"]
dependencies = [
"cryptography>=42.0.5",
"numpy>=1.24.4",
"pandas>=2.0.3",
"pycryptodome>=3.20.0",
"PyJWT>=2.8.0",
"pyotp>=2.9.0",
"requests>=2.31.0",
"requests-oauthlib>=1.4.0",
"selenium>=4.18.1",
"urllib3>=2.2.1",
"webdriver-manager>=4.0.1",
"undetected-chromedriver>=3.5.5",
]
requires-python = ">=3.8"
authors = [
{name = "Hardeep Singh", email = "hardeep.hd13@gmail.com"}
]
maintainers = [
{name = "Hardeep Singh", email = "hardeep.hd13@gmail.com"}
]
description = "A Python library for trading in the Indian Finance Sector with support for multiple broker APIs."
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
"fenix",
"aliceblue",
"angelone",
"choice",
"finvasia",
"fivepaisa",
"fyers",
"iifl",
"kotak",
"kotakneo",
"kunjee",
"mastertrust",
"motilaloswal",
"paper",
"symphony",
"upstox",
"vpc",
"zerodha",
"finance",
"broker",
"trader",
"XTS",
"kite",
"algorithmic",
"algotrading",
"api",
"arbitrage",
"real-time",
"realtime",
"backtest",
"backtesting",
"etc",
"framework",
"invest",
"investing",
"investor",
"library",
"market",
"market data",
"ohlcv",
"order",
"orderbook",
"order book",
"strategy",
"ticker",
"tickers",
"toolkit",
"trade",
"trader",
"trading",
"volume",
"websocket",
"websockets",
"web socket",
"web sockets",
"ws"
]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Information Technology',
'Topic :: Software Development :: Build Tools',
'Topic :: Office/Business :: Financial :: Investment',
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Operating System :: OS Independent',
'Environment :: Console'
]
[project.urls]
Homepage = "https://fenix.hardeep.tech"
Documentation = "https://github.com/TheHardeep/fenix/fenix/wiki"
Repository = "https://github.com/TheHardeep/fenix.git"