-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
43 lines (38 loc) · 926 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 = "gaze-ocr"
version = "0.4.0"
description = "Library for applying OCR to where the user is looking."
readme = "README.md"
authors = [{ name = "James Stout" }]
requires-python = ">=3.11"
dependencies = ["screen-ocr"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dragonfly = ["dragonfly2", "pythonnet"]
[project.urls]
Homepage = "https://github.com/wolfmanstout/gaze-ocr"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv.sources]
screen-ocr = { path = "../screen_ocr", editable = true }
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = ["E501", "SIM105", "SIM116", "UP007"]