-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (34 loc) · 910 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
38
39
40
41
42
43
[project]
name = "robotframework-browser-tray"
version = "1.6.0"
description = "Tray icon and REPL for trying out Browser Library keywords using Chromium or Edge"
authors = [
{name = "Marduk Bolaños", email = "[email protected]"},
]
urls = { homepage = "https://github.com/mardukbp/robotframework-browser-tray" }
dependencies = [
"pystray>=0.19.5",
"robotframework-browser>=18.0.0",
"robotframework-debug>=4.5.0",
]
requires-python = ">=3.8.2"
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.Repl.repl:run"
[build-system]
requires = ["flit_core>=3.2,<4"]
build-backend = "flit_core.buildapi"