-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.4 KB
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
46
47
48
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "robotframework-webservice"
dynamic = ["version"]
description = "Webservice for running Robot Framework tests and tasks"
authors = [{ name = "Markus Stahl", email = "markus.i.sverige@gmail.com" }]
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache License 2.0" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Framework :: FastAPI",
"Framework :: Robot Framework",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
urls = { Homepage = "https://github.com/MarketSquare/robotframework-webservice" }
dependencies = [
"aiofiles>=25.1.0",
"fastapi>=0.135.1",
"requests>=2.32.5",
"robotframework>=6.0.0",
"uvicorn>=0.41.0",
]
[dependency-groups]
dev = [
"httpx>=0.28.1",
"pytest>=9.0.2",
"robotcode>=2.2.0",
"robotframework-robocop>=8.2.2",
]
test = ["httpx>=0.28.1", "pytest>=9.0.2"]
[tool.hatch.version]
path = "src/RobotFrameworkService/version.py"
pattern = 'VERSION = "(?P<version>[^"]+)"'
[tool.hatch.build.targets.wheel]
packages = ["src/RobotFrameworkService"]