[build-system] requires = ["setuptools>=64", "wheel"] build-backend = "setuptools.build_meta" [project] name = "dcos" version = "1.0.0" description = "Distributed Cognitive Operating System — multi-agent cognitive architecture" readme = "README.md" requires-python = ">=3.11" dependencies = [ "pyyaml>=6.0", "pydantic>=2.0", ] [project.optional-dependencies] dev = [ "pytest>=7.0", "pytest-asyncio>=0.21", "pytest-cov>=4.0", "ruff>=0.1", ] [project.scripts] dcos = "dcos.utils.cli:main" [tool.setuptools.packages.find] where = ["src"] [tool.ruff] line-length = 100 target-version = "py311" [tool.ruff.lint] select = ["E", "F", "W", "I"] [tool.pytest.ini_options] testpaths = ["tests"] pythonpath = ["src"]