-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (60 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
71 lines (60 loc) · 1.57 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agentic-aqua"
dynamic = ["version"]
description = "Agentic AQUA — MCP server for Liquid Network and Bitcoin wallet operations"
readme = "README.md"
license = "MIT"
requires-python = ">=3.13"
authors = [
{ name = "Andy", email = "andy@example.com" }
]
keywords = ["liquid", "bitcoin", "wallet", "mcp", "ai", "lwk", "blockstream"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"lwk>=0.8.0",
"mcp>=1.0.0",
"cryptography>=42.0.0",
"bdkpython>=2.2.0",
"coincurve>=21.0.0",
"python-dotenv>=1.0.0",
"click>=8.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"black>=24.0.0",
"ruff>=0.2.0",
"pytest-cov>=7.0.0",
]
[project.scripts]
aqua = "aqua.cli.main:cli"
aqua-mcp = "aqua.server:main"
[project.urls]
Homepage = "https://github.com/jan3dev/agentic-aqua"
Repository = "https://github.com/jan3dev/agentic-aqua"
Documentation = "https://github.com/jan3dev/agentic-aqua#readme"
[tool.hatch.version]
path = "src/aqua/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/aqua"]
[tool.black]
line-length = 100
target-version = ["py313"]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]