-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (48 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
59 lines (48 loc) · 1.24 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
[project]
name = "wikinator"
version = "0.9.0"
description = "Convert Google docs to markdown"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"aiohttp>=3.13.3",
"confuse",
"cryptography",
"dotenv",
"google-api-python-client",
"google-auth-httplib2",
"google-auth-oauthlib",
"gql[all]",
"humanize",
"markdownify>=1.2.2",
"pillow",
"pytest",
"python-docx",
"typer-slim",
]
[project.urls]
Documentation = "https://github.com/philion/wikinator#readme"
Issues = "https://github.com/philion/wikinator/issues"
Source = "https://github.com/philion/wikinator"
[tool.pytest.ini_options]
pythonpath = ["."]
[tool.coverage.run]
source_pkgs = ["wikinator", "tests"]
branch = true
parallel = true
[tool.coverage.paths]
clw = ["src/wikinator", "*/wikinator/src/wikinator"]
tests = ["tests", "*/wikinator/tests"]
[tool.coverage.report]
exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:"]
#[tool.hatch]
#[build-system]
#requires = ["hatchling"]
#build-backend = "hatchling.build"
#[tool.hatch.build.targets.wheel]
#packages = ["src/wikinator"]
[build-system]
requires = ["uv_build>=0.8.10,<0.9.0"]
build-backend = "uv_build"
[project.scripts]
wikinator = "wikinator:app"