-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 1.26 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
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "processcube-robot-agent"
version = "0.1.2"
description = "ProcessCube Robot Agent - Execute robots via UV with native Python integration"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
authors = [
{name = "5minds", email = "info@5minds.de"}
]
dependencies = [
"processcube-sdk==6.0.2a1",
"typer>=0.20.0",
"fastapi>=0.121.0",
"uvicorn>=0.23.0,<0.24.0",
"httpx>=0.27.0",
"nest-asyncio>=1.5.0",
"robotframework>=7.0.0,<8.0.0",
"rpaframework>=31.0.0,<32.0.0",
"robotframework-tidy>=4.0.0,<5.0.0",
"watchdog>=6.0.0,<7.0.0",
"tomli>=1.2.0;python_version<'3.11'",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
"pytest-asyncio>=0.23.0",
]
[tool.setuptools]
packages = ["processcube_robot_agent"]
[tool.setuptools.package-data]
processcube_robot_agent = ["*.py"]
[tool.black]
line-length = 120
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 120
skip_gitignore = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
addopts = "--cov=processcube_robot_agent --cov-report=term-missing --cov-report=html"