Merge branch 'env/migrate-to-uv'
This commit is contained in:
commit
ccd5dee807
|
@ -6,4 +6,4 @@ __pycache__/
|
||||||
|
|
||||||
# config file
|
# config file
|
||||||
config.toml
|
config.toml
|
||||||
poetry.lock
|
uv.lock
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
# auto_login_EIP
|
# auto_login_EIP
|
||||||
|
|
||||||
`poetry run python -m main --config_path .\config.toml.example`
|
- 執行
|
||||||
|
|
||||||
|
```shell
|
||||||
|
# uv run python main.py --config_path .\config.toml.example
|
||||||
|
```
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
name = "auto-login-eip"
|
name = "auto-login-eip"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
description = ""
|
description = ""
|
||||||
authors = [
|
authors = [{ name = "Kinoshita Kenta", email = "ybs0306748@gmail.com" }]
|
||||||
{name = "Kinoshita Kenta",email = "ybs0306748@gmail.com"}
|
|
||||||
]
|
|
||||||
readme = "README.md"
|
|
||||||
requires-python = ">=3.9"
|
requires-python = ">=3.9"
|
||||||
|
readme = "README.md"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"selenium (>=4.27.1,<5.0.0)",
|
"selenium (>=4.27.1,<5.0.0)",
|
||||||
"tomli (>=2.2.1,<3.0.0)",
|
"tomli (>=2.2.1,<3.0.0)",
|
||||||
"webdriver-manager (>=4.0.2,<5.0.0)",
|
"webdriver-manager (>=4.0.2,<5.0.0)",
|
||||||
"rich (>=13.9.4,<15.0.0)"
|
"rich (>=13.9.4,<15.0.0)",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
|
[tool.uv]
|
||||||
|
package = false
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
# for parsing toml file
|
|
||||||
tomli
|
|
||||||
|
|
||||||
# `webdriver_manager` manages webdriver versions
|
|
||||||
webdriver_manager
|
|
||||||
selenium
|
|
||||||
|
|
||||||
# better output
|
|
||||||
rich
|
|
Loading…
Reference in New Issue