forked from lower-elements/accessible_output3
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (71 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
81 lines (71 loc) · 2.06 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=80.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "accessible_output3"
dynamic = ["version"]
description = "Library to provide speech and braille output to a variety of different screen readers and other accessibility solutions."
readme = "readme.rst"
license = {text = "MIT"}
authors = [
{ name = "Luna R", email = "pypi@lvna.me" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"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",
"Topic :: Adaptive Technologies",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.9"
dependencies = [
"pywin32; sys_platform == 'win32'",
"pyobjc; sys_platform == 'darwin'",
]
[dependency-groups]
dev = [
"pytest",
"ruff",
"setuptools_scm",
]
[project.urls]
Homepage = "https://github.com/SigmaNight/accessible_output3"
Repository = "https://github.com/SigmaNight/accessible_output3"
Issues = "https://github.com/SigmaNight/accessible_output3/issues"
[tool.setuptools.package-data]
accessible_output3 = [
"lib/*.dll",
]
[tool.setuptools_scm]
[tool.ruff]
line-length = 88
target-version = "py38"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long, handled by formatter
"B008", # do not perform function calls in argument defaults
"C901", # too complex
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"