From 73f0e62301c5c50c072478bd9a1c5fbce216fa98 Mon Sep 17 00:00:00 2001 From: insleker Date: Tue, 20 May 2025 12:43:11 +0800 Subject: [PATCH 1/2] chore: add poetry dependency manager --- .gitignore | 1 + README.md | 2 ++ pyproject.toml | 20 ++++++++++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore index ea32224..2fbb796 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ __pycache__/ # config file config.toml +poetry.lock diff --git a/README.md b/README.md index 125f144..733ba6e 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ # auto_login_EIP + +`poetry run python -m main --config_path .\config.toml.example` diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..8cd6fea --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[project] +name = "auto-login-eip" +version = "0.1.0" +description = "" +authors = [ + {name = "Your Name",email = "you@example.com"} +] +readme = "README.md" +requires-python = ">=3.10" +dependencies = [ + "selenium (>=4.32.0,<5.0.0)", + "tomli (>=2.2.1,<3.0.0)", + "webdriver-manager (>=4.0.2,<5.0.0)", + "rich (>=14.0.0,<15.0.0)" +] + + +[build-system] +requires = ["poetry-core>=2.0.0,<3.0.0"] +build-backend = "poetry.core.masonry.api" From 07e01554d00f99f4a1c91f7aadad5cd358c10664 Mon Sep 17 00:00:00 2001 From: kinoshitakenta Date: Thu, 19 Jun 2025 16:47:22 +0800 Subject: [PATCH 2/2] chore: updates author info and dependencies Updates the author information and adjusts the dependency versions in the project configuration. --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8cd6fea..6fb178d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,15 +3,15 @@ name = "auto-login-eip" version = "0.1.0" description = "" authors = [ - {name = "Your Name",email = "you@example.com"} + {name = "Kinoshita Kenta",email = "ybs0306748@gmail.com"} ] readme = "README.md" -requires-python = ">=3.10" +requires-python = ">=3.9" dependencies = [ - "selenium (>=4.32.0,<5.0.0)", + "selenium (>=4.27.1,<5.0.0)", "tomli (>=2.2.1,<3.0.0)", "webdriver-manager (>=4.0.2,<5.0.0)", - "rich (>=14.0.0,<15.0.0)" + "rich (>=13.9.4,<15.0.0)" ]