-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (93 loc) · 2.37 KB
/
pyproject.toml
File metadata and controls
100 lines (93 loc) · 2.37 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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "marketdata-sdk-py"
version = "1.2.0"
description = "Official Python SDK for the Market Data API - Real-time stock prices, options data, market status, and more"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Market Data", email = "support@marketdata.app"}
]
keywords = [
"marketdata",
"market-data",
"marketdata-app",
"finance",
"financial-data",
"stocks",
"stock-market",
"stock-prices",
"options",
"options-trading",
"options-chain",
"api",
"sdk",
"trading",
"trading-data",
"real-time-data",
"market-status",
"ohlcv",
"candles",
"quotes",
"earnings",
"financial-news",
"mutual-funds",
"pandas",
"polars",
"dataframe",
]
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",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dependencies = [
"httpx>=0.28.1",
"pydantic>=2.12.5",
"pydantic-settings>=2.12.0",
"pytz>=2024.1",
"tenacity>=9.1.2",
]
[project.urls]
Homepage = "https://www.marketdata.app"
Repository = "https://github.com/MarketDataApp/sdk-py"
Documentation = "https://www.marketdata.app/docs/sdk/py"
Issues = "https://github.com/MarketDataApp/sdk-py/issues"
[project.optional-dependencies]
pandas = [
"pandas>=2.3.3",
]
polars = [
"polars-lts-cpu>=1.33.1",
]
[dependency-groups]
dev = [
"black>=25.11.0",
"freezegun>=1.5.5",
"isort>=7.0.0",
"pandas>=2.3.3",
"polars-lts-cpu>=1.33.1",
"pre-commit>=4.5.1",
"pytest>=9.0.1",
"pytest-cov>=7.0.0",
"pytest-xdist>=3.8.0",
"respx>=0.22.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/marketdata"]
[tool.pytest.ini_options]
pythonpath = ["src"]