-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
77 lines (67 loc) · 1.63 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
70
71
72
73
74
75
76
77
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=61" ]
[project]
name = "unbrowsed"
version = "0.1.0a22"
description = "A browserless HTML testing library for Python"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
]
dependencies = [
"selectolax>=0.3.28",
]
optional-dependencies.docs = [
"myst-parser>=2",
"sphinx>=7.2",
"sphinx-rtd-theme>=2",
]
optional-dependencies.test = [
"coverage[toml]",
"pytest>=7",
]
urls.Documentation = "https://unbrowsed.readthedocs.io"
urls.Repository = "https://github.com/valentinogagliardi/unbrowsed"
[tool.black]
line-length = 79
[tool.pytest.ini_options]
testpaths = [ "tests" ]
python_files = "test_*.py"
[tool.coverage.run]
branch = true
parallel = true
source = [
"unbrowsed",
"tests",
]
[tool.coverage.paths]
source = [
"src",
]
[tool.coverage.report]
show_missing = true
fail_under = 99
[tool.rstcheck]
ignore_directives = [
"autoclass",
"automodule",
"autofunction",
]
report_level = "ERROR"