pyproject.toml (617B)
1 [tool.poetry] 2 name = "githrun" 3 version = "0.1.2" 4 description = "A CLI tool to run Python scripts directly from GitHub URLs" 5 authors = ["Amit Dutta <mail@amit.is-a.dev>"] 6 readme = "README.md" 7 packages = [{include = "githrun", from = "src"}] 8 9 [tool.poetry.dependencies] 10 python = "^3.9" 11 # Cleaned up typer definition (removed deprecated 'all' extra) 12 typer = "^0.12.0" 13 # Pin click to <8.2.0 to prevent crash with newer API changes 14 click = "<8.2.0" 15 requests = "^2.31.0" 16 rich = "^13.7.0" 17 18 [tool.poetry.scripts] 19 githrun = "githrun.cli:app" 20 21 [build-system] 22 requires = ["poetry-core"] 23 build-backend = "poetry.core.masonry.api"