We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4438b0 commit c6f671dCopy full SHA for c6f671d
.gitignore
@@ -128,9 +128,8 @@ dmypy.json
128
# Pyre type checker
129
.pyre/
130
131
-# Pipenv
132
-Pipfile
133
-Pipfile.lock
+# Poetry
+poetry.lock
134
135
# Temporary files
136
temp/
pyproject.toml
@@ -0,0 +1,16 @@
1
+[tool.poetry]
2
+name = "seleniumlib"
3
+version = "0.1.0"
4
+description = "Library based on Selenium that drastically simplifies web automation workflows."
5
+authors = ["algedi1 <[email protected]>"]
6
+readme = "README.md"
7
+
8
+[tool.poetry.dependencies]
9
+python = "^3.10"
10
+selenium = "^4.5.0"
11
+webdriver-manager = "^3.8.4"
12
13
14
+[build-system]
15
+requires = ["poetry-core"]
16
+build-backend = "poetry.core.masonry.api"
requirements.txt
0 commit comments