-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.5 KB
/
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
39
40
41
42
43
44
45
[tool.poetry]
name = "robotframework-zebrunner"
version = "0.3.1"
description = "Robotframework connector for Zebrunner reporting"
authors = ["Anatoliy Platonov <[email protected]>"]
license = "Apache"
readme = "README.md"
homepage = "https://zebrunner.com/documentation/agents/robot"
repository = "https://github.com/zebrunner/python-agent-robot"
keywords = ["automation", "zebrunner", "testing"]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = ">=3.7"
robotframework = ">=3.2.2"
httpx = "^0.22.0"
pydantic = ">=1.0"
python-dotenv = ">=0.10"
PyYAML = "^5.3.1"
robotframework-seleniumlibrary = ">=4.0.0"
[tool.poetry.dev-dependencies]
mypy = "^0.942"
types-PyYAML = "^6.0.5"
robotframework-pabot = "^2.5.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"