-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (36 loc) · 830 Bytes
/
pyproject.toml
File metadata and controls
45 lines (36 loc) · 830 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "Imposition"
version = "0.1.0"
description = "A Python library for parsing and rendering EPUB files in Pyodide."
authors = [
{ name = "Michael R. Bernstein", email = "zopemaven@gmail.com" }
]
dependencies = []
[tool.hatch.envs.default]
dependencies = [
"pytest",
"pytest-asyncio",
"anyio",
"mypy",
"pytest-cov",
"playwright",
"pytest-playwright",
"nest-asyncio"
]
[tool.hatch.envs.default.scripts]
test = "pytest"
[tool.hatch.build.targets.wheel]
packages = ["src/imposition"]
[tool.ruff]
line-length = 88
[tool.ruff.lint.per-file-ignores]
"src/imposition/rendition.py" = ["F821"]
[tool.mypy]
ignore_missing_imports = true
[tool.coverage.run]
source = ["src/imposition"]
[tool.coverage.report]
fail_under = 80