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"