-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (68 loc) · 2.14 KB
/
pyproject.toml
File metadata and controls
82 lines (68 loc) · 2.14 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
82
## see https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
[project]
name = "domible"
version = "0.2.0"
description = "python classes to create accessible HTML elements and documents "
authors = [
{name = "Joel Dodson",email = "joeldodson@gmail.com"}
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"validators (>=0.34.0)"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Topic :: Text Processing :: Markup :: HTML",
]
keywords = [
"html",
"accessibility",
"a11y",
"web development",
"frontend",
"server side rendering",
"SSR",
"hydrate",
]
[project.urls]
homepage = "https://joeldodson.github.io/domible"
documentation = "https://joeldodson.github.io/domible"
repository = "https://github.com/joeldodson/domible"
issues = "https://github.com/joeldodson/domible/issues"
[project.scripts]
dibrowse = "domible.scripts.dibrowse.main:run"
dicli = "domible.scripts.dicli.main:run"
[tool.poetry]
packages = [
{ include = "domible", from = "src" },
## { include = "domible.scripts", from = "src/domible" },
]
[tool.poetry.group.test.dependencies]
pytest = "^8.3.5"
jsonloggeriso8601datetime = "^3.0.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^8.2.3"
pydata-sphinx-theme = "^0.16.1"
myst-parser = "^4.0.1"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
# see: https://docs.pytest.org/en/stable/reference/reference.html#ini-options-ref for list of configuration options
# search through level 2 headings to find Configuration
addopts = "-q --no-header --tb=line"
testpaths = ["tests"]
log_auto_indent = 4
log_cli = false
log_cli_level = 40
log_cli_format = "%(levelname)s -- %(message)s -- %(filename)s:%(funcName)s:%(lineno)d"
log_file = "logs/pytest.log"
log_file_level = 20
log_file_format = "%(asctime)s(%(msecs)d) -- %(levelname)s -- %(message)s -- %(filename)s:%(funcName)s:%(lineno)d"
log_file_date_format = "%Y-%m-%dT%H:%M:%S%z"
## end of file