-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (53 loc) · 1.61 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "carrier-accounting-mcp"
version = "0.1.0"
description = "MCP Server for insurance carrier accounting — ingest carrier PDFs/Excel, reconcile against Applied Epic, post entries. Built for US insurance agencies."
requires-python = ">=3.11"
readme = "README_PYPI.md"
license = {text = "MIT"}
authors = [
{name = "5G Vector", email = "hello@5gvector.com"},
]
keywords = ["mcp", "insurance", "carrier-accounting", "applied-epic", "reconciliation", "direct-bill"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial :: Accounting",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"fastmcp>=0.4.0",
"pdfplumber>=0.10.0",
"openpyxl>=3.1.0",
"pandas>=2.1.0",
"anthropic>=0.23.0",
"pydantic>=2.5.0",
"python-dateutil>=2.8.0",
"python-dotenv>=1.0.0",
"structlog>=23.2.0",
"httpx>=0.25.0",
"tenacity>=8.2.3",
"xlrd>=2.0.0",
"lxml>=5.0.0",
"html5lib>=1.1",
]
[project.urls]
Homepage = "https://5gvector.com/carrier-accounting"
Repository = "https://github.com/pramodmisra/carrier-accounting-mcp"
[project.scripts]
carrier-accounting-mcp = "mcp_server.server:main"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.23.0",
"pytest-mock>=3.12.0",
]
[tool.setuptools.packages.find]
include = ["mcp_server*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]