-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.18 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "infoway-sdk"
dynamic = ["version"]
description = "Official Python SDK for Infoway real-time financial data API"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [{ name = "Infoway", email = "hi@infoway.io" }]
keywords = ["finance", "stock", "crypto", "forex", "market-data", "websocket", "real-time"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Financial :: Investment",
]
dependencies = [
"httpx>=0.27",
"websockets>=12.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"respx>=0.21",
]
[project.urls]
Homepage = "https://infoway.io"
Documentation = "https://docs.infoway.io"
Repository = "https://github.com/infoway-io/infoway-sdk-python"
[tool.hatch.version]
path = "src/infoway/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/infoway"]
[tool.pytest.ini_options]
asyncio_mode = "auto"