-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.33 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bitrouter"
version = "0.1.0"
description = "Python SDK for BitRouter - the zero-ops LLM gateway for autonomous agents"
readme = "README.md"
license = "ISC"
requires-python = ">=3.10"
authors = [{ name = "BitRouter" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
dependencies = ["httpx>=0.27"]
[project.optional-dependencies]
solana = ["solders>=0.21", "base58>=2.1", "x402[svm]>=2.2"]
evm = ["eth-account>=0.13", "x402[evm]>=2.2"]
openai = ["openai>=1.50"]
x402 = ["x402[httpx]>=2.2"]
all = ["bitrouter[solana,evm,openai,x402]"]
dev = [
"bitrouter[all]",
"pytest>=8",
"pytest-asyncio>=0.24",
"python-dotenv>=1",
"ruff>=0.8",
"mypy>=1.13",
]
[project.urls]
Repository = "https://github.com/bitrouter/bitrouter-sdk"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.mypy]
python_version = "3.10"
strict = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]