chore: add poetry dependency manager

This commit is contained in:
insleker 2025-05-20 12:43:11 +08:00
parent 3774f2eaa3
commit 73f0e62301
3 changed files with 23 additions and 0 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@ __pycache__/
# config file
config.toml
poetry.lock

View File

@ -1 +1,3 @@
# auto_login_EIP
`poetry run python -m main --config_path .\config.toml.example`

20
pyproject.toml Normal file
View File

@ -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"