forked from kinoshitakenta/auto_login_EIP
chore: add poetry dependency manager
This commit is contained in:
parent
3774f2eaa3
commit
73f0e62301
|
@ -6,3 +6,4 @@ __pycache__/
|
||||||
|
|
||||||
# config file
|
# config file
|
||||||
config.toml
|
config.toml
|
||||||
|
poetry.lock
|
||||||
|
|
|
@ -1 +1,3 @@
|
||||||
# auto_login_EIP
|
# auto_login_EIP
|
||||||
|
|
||||||
|
`poetry run python -m main --config_path .\config.toml.example`
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
[project]
|
||||||
|
name = "auto-login-eip"
|
||||||
|
version = "0.1.0"
|
||||||
|
description = ""
|
||||||
|
authors = [
|
||||||
|
{name = "Your Name",email = "you@example.com"}
|
||||||
|
]
|
||||||
|
readme = "README.md"
|
||||||
|
requires-python = ">=3.10"
|
||||||
|
dependencies = [
|
||||||
|
"selenium (>=4.32.0,<5.0.0)",
|
||||||
|
"tomli (>=2.2.1,<3.0.0)",
|
||||||
|
"webdriver-manager (>=4.0.2,<5.0.0)",
|
||||||
|
"rich (>=14.0.0,<15.0.0)"
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
||||||
|
build-backend = "poetry.core.masonry.api"
|
Loading…
Reference in New Issue