-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
executable file
·69 lines (61 loc) · 2.12 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
67
68
69
# Copyright (c) Jupyter Accessibility Development Team.
# Distributed under the terms of the Modified BSD License.
[build-system]
# needed for build-time
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jupyter-a11y-tests"
description = "Set of automated accessibility tests for JupyterLab"
version = "1.0.0"
readme = "README.md"
license = "BSD-3-Clause"
requires-python = ">=3.8"
authors = [
{ name = "Tania Allard", email = "[email protected]" },
{ name = "Gabriel Fouasnon", email = "[email protected]" }
]
keywords = ["jupyter", "jupyterlab", "accessibility", "a11y", "testing"]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Framework :: Jupyter :: JupyterLab",
"Framework :: Jupyter :: JupyterLab :: 3",
"Framework :: Jupyter :: JupyterLab :: 4"
]
[project.urls]
Repository = "https://github.com/Quansight-Labs/jupyter-a11y-testing"
Issues = "https://github.com/Quansight-Labs/jupyter-a11y-testing/issues"
[tool.isort]
profile = "black"
[tool.black]
line_length = 79
[tool.pytest.ini_options]
addopts = "--nbval --sanitize-with docs/sanitize.cfg -pno:warnings --cov=schemin"
[tool.hatch]
[tool.ruff]
builtins = ["c"]
# E501 Line too long (158 > 100 characters)
# D400: First line should end with a period
# F401: Imported but unused
# F841: Local variable is assigned to but never used
ignore = ["D400", "F401", "F841", "E501"]
include = ["*.py", "*.pyi", "**/pyproject.toml", "*.ipynb"]
# A: builtins
# F: Pyflakes
# E,W: pycodestyle
# C4: flake8-comprehensions
# D: pydocstyle
select = ["A", "B", "C", "C4", "C9", "D", "E", "F", "W", "ICN"]
[tool.ruff.pydocstyle]
convention = "google"