[build-system] requires = ["setuptools>=68", "wheel"] build-backend = "setuptools.build_meta" [project] name = "synapse-x" version = "1.0.0" description = "SYNAPSE-X: Predictive decision intelligence environment - OpenEnv Hackathon" readme = "README.md" license = { text = "MIT" } requires-python = ">=3.10" dependencies = [ "fastapi==0.115.0", "uvicorn[standard]==0.30.6", "pydantic==2.8.2", "openai>=2.7.2", "httpx==0.27.2", "openenv-core>=0.2.0", ] [project.optional-dependencies] dev = ["pytest", "httpx"] [project.scripts] synapse-x = "app:main" server = "server.app:main" [tool.setuptools.packages.find] where = ["."] include = ["env*", "agents*", "api*", "scripts*", "server*"] [tool.setuptools.package-data] "*" = ["*.yaml", "*.json", "*.md"]