-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (49 loc) · 1.65 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 = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "document360-mcp"
version = "0.1.2"
description = "Model Context Protocol server for Document360 - search, retrieve, and interact with your knowledge base articles, categories, and project versions through AI assistants"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Dario Ruellan", email = "druellan@ecimtech.com"}
]
keywords = ["mcp", "document360", "knowledge-base", "api", "fastmcp", "model-context-protocol"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Documentation",
]
requires-python = ">=3.12"
dependencies = [
"fastmcp>=3.2.4,<4",
"httpx>=0.28.1",
]
[project.urls]
Repository = "https://github.com/druellan/document360-mcp"
Issues = "https://github.com/druellan/document360-mcp/issues"
[tool.setuptools]
py-modules = ["server"]
[tool.setuptools.packages.find]
where = ["."]
[tool.bumpversion]
current_version = "0.1.2"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
filename = "server.py"
search = 'version="{current_version}"'
replace = 'version="{new_version}"'