pyproject.tomlโข3.92 kB
[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "letta-mcp-server-railway"
version = "1.0.0"
description = "Railway HTTP deployment edition of Letta MCP Server - connects AI clients to Letta.ai agents"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{name = "SNYCFIRE-CORE", email = "Zack@ascendhq.gg"},
]
maintainers = [
{name = "SNYCFIRE-CORE", email = "Zack@ascendhq.gg"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Typing :: Typed",
]
keywords = [
"letta",
"mcp",
"model-context-protocol",
"ai",
"agents",
"llm",
"railway",
"http-deployment",
"streamable-http",
"claude",
"openai",
"fastmcp",
"memgpt",
"universal",
"interoperability",
]
requires-python = ">=3.10"
dependencies = [
"fastmcp>=0.2.0",
"httpx>=0.27.0",
"pyyaml>=6.0",
"python-dotenv>=1.0.0",
"tenacity>=8.0.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
"pre-commit>=3.0.0",
"ruff>=0.1.0",
]
docs = [
"mkdocs>=1.5.0",
"mkdocs-material>=9.0.0",
"mkdocstrings[python]>=0.24.0",
]
[project.urls]
Homepage = "https://github.com/SNYCFIRE-CORE/letta-mcp-server-railway"
Documentation = "https://github.com/SNYCFIRE-CORE/letta-mcp-server-railway/tree/main/docs"
Repository = "https://github.com/SNYCFIRE-CORE/letta-mcp-server-railway"
Issues = "https://github.com/SNYCFIRE-CORE/letta-mcp-server-railway/issues"
[project.scripts]
letta-mcp-railway = "letta_mcp_server_railway.cli:main"
letta-mcp-server-railway = "letta_mcp_server_railway.server:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
target-version = ['py310', 'py311', 'py312']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.ruff]
line-length = 100
target-version = "py310"
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex
]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = false
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
follow_imports = "normal"
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
addopts = [
"--strict-markers",
"--tb=short",
"--cov=letta_mcp_server_railway",
"--cov-report=term-missing",
"--cov-report=html",
"--cov-report=xml",
"--asyncio-mode=auto",
]
[tool.coverage.run]
source = ["src/letta_mcp_server_railway"]
omit = [
"*/tests/*",
"*/__init__.py",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if self.debug:",
"if __name__ == .__main__.:",
"raise AssertionError",
"raise NotImplementedError",
"if TYPE_CHECKING:",
]