-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (77 loc) · 2.02 KB
/
pyproject.toml
File metadata and controls
83 lines (77 loc) · 2.02 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
[project]
name = "pykalshi"
version = "1.0.4"
description = "A typed Python client for the Kalshi prediction markets API with WebSocket streaming, automatic retries, and ergonomic interfaces"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [{name = "Arsh Koneru", email = "arshkon@gmail.com"}]
keywords = [
"kalshi",
"prediction-markets",
"trading",
"api-client",
"websocket",
"finance",
"betting",
"forecasting",
"elections",
"event-contracts",
"binary-options",
"real-time",
"async",
"pydantic",
"orderbook",
"market-data",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business :: Financial :: Investment",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.27.0",
"pydantic>=2.0.0",
"cryptography>=41.0.0",
"python-dotenv>=1.0.0",
"websockets>=11.0",
]
[project.optional-dependencies]
dataframe = [
"pandas>=1.5.0",
]
web = [
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"aiofiles>=23.0.0",
]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"pytest-asyncio>=1.0.0",
"pytest-mock>=3.0.0",
"mypy>=1.0.0",
"pykalshi[dataframe]",
]
[project.urls]
Homepage = "https://github.com/ArshKA/pykalshi"
Repository = "https://github.com/ArshKA/pykalshi"
Documentation = "https://github.com/ArshKA/pykalshi#readme"
Issues = "https://github.com/ArshKA/pykalshi/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["pykalshi*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]