pyproject.toml•2.07 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "baas-sms-mcp"
version = "1.0.25"
authors = [
{name = "mBaaS Team", email = "support@aiapp.link"},
]
description = "A Model Context Protocol server for SMS and MMS messaging services"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["mcp", "sms", "mms", "messaging", "model-context-protocol"]
dependencies = [
"mcp>=0.2.0",
"httpx>=0.24.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21.0",
"black>=23.0",
"mypy>=1.0",
"ruff>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/your-org/baas-sms-mcp"
Repository = "https://github.com/your-org/baas-sms-mcp.git"
Issues = "https://github.com/your-org/baas-sms-mcp/issues"
Documentation = "https://github.com/your-org/baas-sms-mcp#readme"
#[project.scripts]
#baas-sms-mcp = "baas_sms_mcp:main"
[tool.black]
line-length = 88
target-version = ['py310']
[tool.ruff]
target-version = "py310"
line-length = 88
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
]
[tool.mypy]
python_version = "3.10"
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"