27 lines
488 B
TOML
27 lines
488 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "desktop-mark"
|
|
version = "0.1.0"
|
|
description = "Windows desktop RPA annotation tool"
|
|
readme = "REAMD.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"PySide6>=6.7,<7",
|
|
"pywin32>=306",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8,<9",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["src"]
|