Compare commits

...

4 Commits

Author SHA1 Message Date
kinoshitakenta bee7927ef9
chore: use uv to manage the environment
Refactors the project to use `uv` for dependency management
instead of `poetry` and `requirements.txt`.

Updates `pyproject.toml` to remove unnecessary fields, and adds
`uv.lock` to specify exact versions of dependencies.

Updates the README with `uv` command to execute the application.
2025-06-20 13:37:38 +08:00
kinoshitakenta 8579b135cf
Merge branch 'env/migrate-to-poetry' 2025-06-19 16:52:21 +08:00
kinoshitakenta 07e01554d0
chore: updates author info and dependencies
Updates the author information and adjusts the dependency versions in the project configuration.
2025-06-19 16:47:22 +08:00
insleker 73f0e62301 chore: add poetry dependency manager 2025-05-20 12:43:11 +08:00
4 changed files with 27 additions and 9 deletions

1
.gitignore vendored
View File

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

View File

@ -1 +1,7 @@
# auto_login_EIP
- 執行
```shell
# uv run python main.py --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" }]
requires-python = ">=3.9"
readme = "README.md"
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"
[tool.uv]
package = false

View File

@ -1,9 +0,0 @@
# for parsing toml file
tomli
# `webdriver_manager` manages webdriver versions
webdriver_manager
selenium
# better output
rich