Skip to content

Commit c6f671d

Browse files
committed
Add pyproject.toml, remove requirements.txt
1 parent a4438b0 commit c6f671d

File tree

3 files changed

+18
-53
lines changed

3 files changed

+18
-53
lines changed

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,8 @@ dmypy.json
128128
# Pyre type checker
129129
.pyre/
130130

131-
# Pipenv
132-
Pipfile
133-
Pipfile.lock
131+
# Poetry
132+
poetry.lock
134133

135134
# Temporary files
136135
temp/

pyproject.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)