-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (34 loc) · 905 Bytes
/
pyproject.toml
File metadata and controls
43 lines (34 loc) · 905 Bytes
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
[project]
name = "robotframework-browser-tray"
version = "1.8.2"
description = "Tray icon and REPL for trying out Browser Library keywords using Chromium or Edge"
authors = [
{name = "Marduk Bolaños", email = "marduk.bolanos@imbus.de"},
]
urls = { homepage = "https://github.com/mardukbp/robotframework-browser-tray" }
dependencies = [
"pystray~=0.19.5",
"robotframework-browser>=18",
"robotframework-debug~=4.5.0",
]
requires-python = ">=3.9.0"
readme = "README.md"
license = {text = "Apache 2.0"}
[tool.flit.module]
name = "BrowserTray"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"tox>=4.15.1",
"pytest>=8.2.2",
"mypy>=1.10.0",
]
[tool.pdm.scripts]
test = "tox"
[project.scripts]
browser-tray = "BrowserTray.tray:run"
ibrowser = "BrowserTray.ibrowser:run"
[build-system]
requires = ["flit_core>=3.2,<4"]
build-backend = "flit_core.buildapi"