Spaces:
Sleeping
Sleeping
File size: 1,580 Bytes
494c89b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
[project]
name = "kiro-manager-wb"
version = "6.3.7"
description = "AWS Builder ID auto-registration backend for Kiro Extension"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "WhiteBite"}
]
keywords = ["kiro", "aws", "automation", "registration"]
dependencies = [
"drissionpage>=4.0.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"websockets>=12.0",
"imapclient>=2.3.0",
"python-dotenv>=1.0.0",
"httpx>=0.25.0",
"pydantic>=2.0.0",
"requests>=2.31.0",
"cbor2>=5.6.0",
"pysocks>=1.7.1",
"aiohttp-socks>=0.8.0",
"httptools>=0.6.0",
"h11>=0.14.0",
"anyio>=4.0.0",
"aiofiles>=23.0.0",
"pywebview>=5.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.0.280",
"mypy>=1.4.0",
]
[project.scripts]
kiro-manager = "cli:main"
kiro-standalone = "run:main"
kiro-llm = "llm.run_llm_server:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["core*", "registration*", "spoofers*", "services*", "debugger*", "llm*", "app*"]
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.ruff]
line-length = 100
select = ["E", "F", "W", "I", "N", "UP", "B", "C4"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_ignores = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["../tests"]
|