-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.19 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "monarch-access"
version = "0.3.0"
description = "Lightweight CLI and Python SDK for accessing Monarch Money financial data"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"aiohttp>=3.8.0",
"click>=8.0.0",
"tinydb>=4.8.0",
"mcp-app @ git+https://github.com/echomodel/mcp-app.git",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.23.0",
]
http = [
"uvicorn>=0.30.0",
]
[project.scripts]
monarch = "monarch.cli:cli"
monarch-mcp = "monarch:app.mcp_cli"
monarch-admin = "monarch:app.admin_cli"
[project.entry-points."mcp_app.apps"]
monarch = "monarch:app"
[project.urls]
Homepage = "https://github.com/krisrowe/monarch-access"
Repository = "https://github.com/krisrowe/monarch-access"
[tool.setuptools.packages.find]
include = ["monarch*"]
[tool.pytest.ini_options]
# Only run unit and framework tests by default. Integration tests require live credentials.
# Run integration tests with: pytest tests/integration/ -v
testpaths = ["tests"]
addopts = "--ignore=tests/integration"
asyncio_mode = "auto"