-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (50 loc) · 1.38 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "pytest-dpg"
version = "0.1.5"
description = "pytest-dpg is a pytest plugin for testing Dear PyGui (DPG) applications"
authors = [
{ name = "TJ", email = "[email protected]" }
]
dependencies = [
"dearpygui>=1.11.1",
"pyautogui>=0.9.54",
"multiprocess>=0.70.16",
]
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"dpg",
"dearpygui",
]
classifiers = [
"Framework :: Pytest",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: User Interfaces",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities",
]
[project.urls]
repository = "https://github.com/tbruno25/pytest-dpg"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.entry-points.pytest11]
pytest-dpg = "pytest_dpg.plugin"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.3.2",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/pytest_dpg"]
[tool.ruff.lint]
extend-select = ["A", "B", "I", "N", "W"]