| [build-system] | |
| requires = ["setuptools>=68", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "kiroproxy" | |
| dynamic = ["version"] | |
| description = "Kiro IDE API reverse proxy server" | |
| readme = "README.md" | |
| requires-python = ">=3.10" | |
| license = { text = "MIT" } | |
| authors = [{ name = "petehsu" }] | |
| urls = { Homepage = "https://github.com/petehsu/KiroProxy" } | |
| dependencies = [ | |
| "fastapi>=0.100.0", | |
| "uvicorn>=0.23.0", | |
| "httpx>=0.24.0", | |
| "requests>=2.31.0", | |
| "tiktoken>=0.5.0", | |
| "cbor2>=5.4.0", | |
| ] | |
| [project.optional-dependencies] | |
| dev = [ | |
| "pytest>=7.0.0", | |
| "hypothesis>=6.0.0", | |
| ] | |
| [project.scripts] | |
| kiro-proxy = "kiro_proxy.cli:main" | |
| [tool.setuptools.dynamic] | |
| version = { attr = "kiro_proxy.__version__" } | |
| [tool.setuptools.packages.find] | |
| include = ["kiro_proxy*"] | |
| [tool.pytest.ini_options] | |
| testpaths = ["tests"] | |