-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (50 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (50 loc) · 1.73 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
[build-system]
requires = ["setuptools>=80.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "listmonk-api"
version = "2.0.0"
description = "Agent package for Listmonk"
readme = "README.md"
authors = [{ name = "Project Maintainers", email = "maintainers@users.noreply.github.com" }]
license = { text = "MIT" }
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3"]
requires-python = ">=3.12,<3.15"
dependencies = [
"agent-utilities[mcp]>=2.0.0,<3.0.0"]
[project.optional-dependencies]
mcp = [
"agent-utilities[mcp]>=2.0.0,<3.0.0"]
agent = [
"agent-utilities[agent-runtime,logfire]>=2.0.0,<3.0.0"]
all = [
"agent-utilities[mcp,agent-runtime,logfire]>=2.0.0,<3.0.0"]
[project.scripts]
listmonk-mcp = "listmonk_api.mcp_server:mcp_server"
listmonk-agent = "listmonk_api.agent_server:agent_server"
[tool.setuptools.packages.find]
where = ["."]
[project.entry-points."agent_utilities.skill_providers"]
listmonk-api = "listmonk_api.skills"
[project.entry-points."agent_utilities.ontology_providers"]
listmonk-api = "listmonk_api.ontology"
[project.entry-points."agent_utilities.source_connector_providers"]
listmonk-api = "listmonk_api.connectors"
[project.entry-points."agent_utilities.prompt_providers"]
listmonk-api = "listmonk_api.prompts"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
listmonk_api = [ "mcp_config.json", "skills/**", "prompts/**", "ontology/**", "connectors/**",]
[tool.codespell]
ignore-words-list = "optin"
[tool.coverage.run]
omit = [
"listmonk_api/listmonk_api.py",
"listmonk_api/__main__.py",
]