-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (73 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
85 lines (73 loc) · 1.92 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
build-backend = "hatchling.build"
requires = [ "hatchling" ]
[project]
name = "mcp-bear"
version = "0.5.2"
description = "A MCP server for interacting with Bear note-taking software."
readme = "README.md"
authors = [
{ name = "Junpei Kawamoto", email = "kawamoto.junpei@gmail.com" },
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: MacOS X",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"fastapi>=0.115",
"mcp>=1.9",
"pydantic>=2.10.6",
"requests>=2.32.3",
"rich-click>=1.8.6",
"uvicorn>=0.34",
]
scripts.mcp-bear = "mcp_bear.cli:main"
[dependency-groups]
dev = [
"bump-my-version>=1",
"pre-commit>=4",
"pre-commit-uv>=4",
"pytest>=8",
"types-requests>=2.32.0.20250306",
]
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.pyproject-fmt]
indent = 4
[tool.bumpversion]
current_version = "0.5.2"
commit = true
pre_commit_hooks = [
"uv sync",
"git add uv.lock",
]
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
filename = "manifest.json"
search = '"version": "{current_version}"'
replace = '"version": "{new_version}"'
[[tool.bumpversion.files]]
filename = "server.json"
search = '"version": "{current_version}"'
replace = '"version": "{new_version}"'
[[tool.bumpversion.files]]
filename = "server.json"
search = 'download/v{current_version}'
replace = 'download/v{new_version}'
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true