pyproject.tomlโข948 B
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "crypto-mcp-server"
version = "1.0.0"
description = "MCP server for cryptocurrency market data"
authors = [{name = "Your Name", email = "your.email@example.com"}]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"ccxt>=4.0.0",
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"requests>=2.31.0"
]
[project.optional-dependencies]
dev = [
"pytest-cov>=4.1.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0"
]
[tool.pytest.ini_options]
testpaths = ["src/tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --strict-markers"
pythonpath = ["."]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false