-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 1.39 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "simplefunctions-ai"
version = "0.2.1"
description = "Preview Python client for the SimpleFunctions HTTP/Data API."
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [{ name = "SimpleFunctions", email = "hello@simplefunctions.dev" }]
keywords = ["prediction-markets","world-model","ai-agents","real-time-data","kalshi","polymarket","langchain","openai","anthropic","mcp","agent-context","world-state"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = ["requests>=2.28.0"]
[project.scripts]
sf-world = "simplefunctions.cli:cmd_world"
sf-index = "simplefunctions.cli:cmd_index"
sf-edges = "simplefunctions.cli:cmd_edges"
sf-market = "simplefunctions.cli:cmd_market"
sf-delta = "simplefunctions.cli:cmd_delta"
[project.urls]
Homepage = "https://simplefunctions.dev"
Documentation = "https://docs.simplefunctions.dev/api-reference/overview"
Repository = "https://github.com/spfunctions/simplefunctions-python"
"World State API" = "https://simplefunctions.dev/api/agent/world"
"MCP adapter" = "https://simplefunctions.dev/api/mcp/mcp"
[tool.hatch.build.targets.wheel]
packages = ["simplefunctions"]