-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
38 lines (33 loc) · 966 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[tool.poetry]
name = "robotframework-gevent"
version = "0.7.0"
description = "Run keywords asynchronously with the power of gevent"
authors = ["Eldad Uzman <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "GeventLibrary", from = "src" }
]
repository = "https://github.com/eldaduzman/robotframework-gevent"
keywords = ["robotframework", "rpa", "automation", "asynchronous"]
[tool.poetry.dependencies]
python = "^3.8"
gevent = ">=21.12,<24.0"
robotframework = ">=5.0.1,<7.0.0"
robotframework-pythonlibcore = ">=3,<5"
aiohttp = "^3.9.1"
[tool.poetry.group.dev.dependencies]
mypy = "^0.971"
pylint = "^2.15.0"
black = "^22.8.0"
perflint = "^0.7.3"
robotframework-requests = "^0.9.3"
coverage = "^6.4.4"
cosmic-ray = "^8.3.5"
tox = "^3.25.1"
docutils = "^0.19"
robotframework-sshlibrary = "^3.8.0"
robotframework-seleniumlibrary = "^6.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"