-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (53 loc) · 1.59 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ig_trading_historical_data"
version = "1.0.0"
authors = [
{name = "Shayan Mahinfar", email = "shayanmahinfar@gmail.com"},
]
description = "A Python wrapper for extracting historical data in a quota-efficient way from IG's Trading API (can specify a daily time range for data gathering)."
readme = "README.md"
requires-python = ">= 3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
]
keywords = [
"ig",
"ig trading",
"trading",
"spread betting",
"CFD",
"api",
"trading api",
"market data",
"ig markets",
"trading data",
"historical market data",
"download market data",
"financial time series data",
"financial data",
"time series data",
]
dependencies = [
"numpy==1.26.3",
"pandas==2.1.4",
"requests==2.31.0",
"requests-toolbelt==1.0.0",
]
[project.urls]
Homepage = "https://github.com/Shayan-H20/IG-Trading-Historical-Data"
Issues = "https://github.com/Shayan-H20/IG-Trading-Historical-Data/issues"