[project] name = "dss" version = "1.0.0" description = "Design System Server - MCP for Claude Code" readme = "README.md" requires-python = ">=3.10" license = {text = "MIT"} authors = [ {name = "DSS Team"} ] keywords = ["design-system", "mcp", "claude", "figma", "storybook"] classifiers = [ "Development Status :: 4 - Beta", "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 = [ "fastapi>=0.104.0", "uvicorn[standard]>=0.24.0", "pydantic>=2.0.0", "pydantic-settings>=2.0.0", "python-dotenv>=1.0.0", "httpx>=0.25.0", "mcp>=0.9.0", "anthropic>=0.40.0", "sse-starlette>=1.8.0", "aiohttp>=3.9.0", "atlassian-python-api>=3.41.0", "cryptography>=42.0.0", "structlog>=23.2.0", ] [project.optional-dependencies] dev = [ "pytest>=7.0.0", "pytest-asyncio>=0.21.0", "pytest-cov>=4.0.0", "black>=23.0.0", "ruff>=0.1.0", ] redis = [ "celery[redis]>=5.3.0", "redis>=5.0.0", ] [project.scripts] dss = "dss.mcp.server:main" dss-api = "apps.api.server:main" [build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools.packages.find] include = ["dss*", "apps*"] [tool.pytest.ini_options] pythonpath = ["."] testpaths = ["tests"] asyncio_mode = "auto" [tool.black] line-length = 100 target-version = ["py310", "py311", "py312"] [tool.ruff] line-length = 100 select = ["E", "F", "I", "N", "W"] ignore = ["E501"]