pyproject.toml•1.64 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tiktok-ads-mcp"
version = "0.1.0"
description = "Model Context Protocol server for TikTok Ads API integration"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "AdsMCP Team", email = "support@adsmcp.com"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.25.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"asyncio>=3.4.3",
"typing-extensions>=4.0.0",
"aiohttp>=3.12.15",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/adsmcp/tiktok-ads-mcp"
Repository = "https://github.com/adsmcp/tiktok-ads-mcp"
Documentation = "https://docs.adsmcp.com/tiktok"
[project.scripts]
tiktok-ads-mcp = "tiktok_ads_mcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/tiktok_ads_mcp"]
[tool.black]
line-length = 88
target-version = ["py38"]
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"