28 lines
459 B
TOML
28 lines
459 B
TOML
[project]
|
|
name = "kilocode"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"aiohttp==3.13.3",
|
|
"selenium>=4.41.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=9.0.0",
|
|
]
|
|
|
|
[tool.uv]
|
|
package = false
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.0.2",
|
|
"pytest-asyncio>=0.25.0",
|
|
"pytest-aiohttp>=1.1.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
asyncio_default_fixture_loop_scope = "function"
|
|
pythonpath = ["src"]
|