23 lines
675 B
TOML
23 lines
675 B
TOML
[tool.poetry]
|
|
name = "install-chromedriver"
|
|
version = "0.1.0"
|
|
description = "Simple CLI utility to install the matching chromedriver to your currently installed chrome in either your PATH, or your virtualenv, if one is enabled"
|
|
authors = ["Kenny's Mom <wouldntyouliketoknow@nachoemail.com>"]
|
|
license = "MIT"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8,<3.14"
|
|
typer = "0.9.0"
|
|
webdriver-manager = "^4.0.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pyinstaller ="^6.11.1"
|
|
|
|
[tool.poetry.scripts]
|
|
install-chromedriver = "cli:app"
|
|
build-executable = "scripts:install"
|
|
build-all = "scripts:build_all"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api" |