-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (55 loc) · 1.64 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
60
61
62
63
64
65
66
[build-system]
requires = ["poetry-core", "setuptools"]
build-backend = "poetry.core.masonry.api"
[project]
name = "pixwin"
version = "0.1.0"
requires-python = ">=3.8"
description = "A fast Python API for retrieving RGB values of a pixel on Windows using ctypes."
authors = [{ name = "winstxnhdw", email = "[email protected]" }]
maintainers = [{ name = "winstxnhdw", email = "[email protected]" }]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: Microsoft :: Windows",
]
[tool.poetry]
name = "pixwin"
version = "0.1.0"
description = "A fast Python API for retrieving RGB values of a pixel on Windows using ctypes."
authors = ["winstxnhdw <[email protected]>"]
[tool.poetry.urls]
"Homepage" = "https://github.com/winstxnhdw/PixWin"
"Bug Tracker" = "https://github.com/winstxnhdw/PixWin/issues"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
pyright = "^1.1.394"
pylint = "^3.2.7"
pytest = "^8.3.4"
ruff = "^0.9.6"
setuptools = "^75.3.0"
[tool.poetry.build]
script = "build.py"
generate-setup-file = true
[tool.setuptools]
include-package-data = false
[tool.ruff]
line-length = 120
[tool.ruff.format]
quote-style = "single"
[tool.pylint.format]
good-names = ["x", "y", "z"]
[tool.pylint.message_control]
disable = [
"missing-module-docstring",
"no-name-in-module",
"useless-import-alias",
"line-too-long",
"duplicate-code",
]