-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.41 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (41 loc) · 1.41 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
[build-system]
requires = ["hatchling>=1.24"]
build-backend = "hatchling.build"
[project]
name = "worldmonitor-sdk"
version = "0.1.1"
description = "Official Python SDK for the World Monitor global-intelligence API — country briefs, risk scores, conflict/cyber/market/news feeds, and MCP tools without writing an HTTP integration."
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "World Monitor" }]
keywords = [
"worldmonitor",
"osint",
"geopolitics",
"intelligence",
"api-client",
"mcp",
"agent",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
]
# Zero runtime dependencies — stdlib only, like the npm CLI it mirrors.
dependencies = []
# The Homepage URL is how agents (and agent-readiness scanners) verify this
# package is the product's official SDK — keep it on the product domain.
[project.urls]
Homepage = "https://worldmonitor.app"
Documentation = "https://www.worldmonitor.app/docs/sdks"
Repository = "https://github.com/koala73/worldmonitor"
Issues = "https://github.com/koala73/worldmonitor/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/worldmonitor_sdk"]