[build-system] requires = ["setuptools>=68", "wheel"] build-backend = "setuptools.build_meta" [project] name = "aicc" version = "0.1.0" description = "Python SDK for the AI-Controlled Character Protocol" readme = "README.md" requires-python = ">=3.11" license = { text = "MIT" } authors = [{ name = "Emil Shanaty", email = "emil28092005@gmail.com" }] keywords = ["aicc", "protocol", "agent", "llm", "gamedev", "embodied-ai"] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Libraries :: Python Modules", ] dependencies = [ "pydantic>=2.5", "websockets>=12", ] [project.optional-dependencies] dev = [ "pytest>=8", "pytest-asyncio>=0.23", "ruff>=0.3", ] [project.urls] Protocol = "https://github.com/emil28092005/AICC-Protocol" Issues = "https://github.com/emil28092005/aicc-py/issues" [tool.setuptools.packages.find] where = ["."] include = ["aicc*"] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] [tool.ruff] line-length = 100 target-version = "py311"