forked from kinoshitakenta/auto_login_EIP
Merge branch 'env/migrate-to-poetry'
This commit is contained in:
commit
8579b135cf
|
@ -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 = "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"
|
Loading…
Reference in New Issue