diff --git a/.gitignore b/.gitignore index 2fbb796..916a05e 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,4 @@ __pycache__/ # config file config.toml -poetry.lock +uv.lock diff --git a/README.md b/README.md index 733ba6e..78c02df 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ # auto_login_EIP -`poetry run python -m main --config_path .\config.toml.example` +- 執行 + +```shell +# uv run python main.py --config_path .\config.toml.example +``` diff --git a/pyproject.toml b/pyproject.toml index 6fb178d..1cc9a8f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,19 +2,19 @@ name = "auto-login-eip" version = "0.1.0" description = "" -authors = [ - {name = "Kinoshita Kenta",email = "ybs0306748@gmail.com"} -] -readme = "README.md" +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)" + "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 diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 9536c80..0000000 --- a/requirements.txt +++ /dev/null @@ -1,9 +0,0 @@ -# for parsing toml file -tomli - -# `webdriver_manager` manages webdriver versions -webdriver_manager -selenium - -# better output -rich