Merge branch 'env/migrate-to-poetry'

This commit is contained in:
kinoshitakenta 2025-06-19 16:52:21 +08:00
commit 8579b135cf
Signed by: kinoshitakenta
GPG Key ID: A811E8CA36EF425E
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 = "Kinoshita Kenta",email = "ybs0306748@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"selenium (>=4.27.1,<5.0.0)",
"tomli (>=2.2.1,<3.0.0)",
"webdriver-manager (>=4.0.2,<5.0.0)",
"rich (>=13.9.4,<15.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"