-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 955 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
[tool.poetry]
name = "robotframework-roboops"
version = "0.2.4"
description = "Robot Framework's library for creating and running DevOps tasks easily and efficiently."
authors = ["Łukasz Sójka <[email protected]>"]
maintainers = ["Łukasz Sójka <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
homepage = ""
repository = "https://github.com/soyacz/robotframework-roboops/"
documentation = "https://github.com/soyacz/robotframework-roboops/"
keywords = [
"robotframework",
"CI",
"CD"
]
packages = [
{ include = "RoboOps" }
]
[tool.poetry.dependencies]
python = "^3.6"
robotframework = "^3.2.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.1"
coverage = "^5.3.1"
black = "^20.8b1"
mypy = "^0.790"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
robot_framework_user_guide = "https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html"