-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
118 lines (109 loc) · 2.74 KB
/
Copy pathpyproject.toml
File metadata and controls
118 lines (109 loc) · 2.74 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[project]
name = "hike"
version = "1.4.0"
description = "A Markdown browser for the terminal"
authors = [
{ name = "Dave Pearson", email = "davep@davep.org" }
]
dependencies = [
"textual>=5.3.0",
"textual-enhanced>=0.13.0",
"textual-fspicker>=0.4.1",
"xdg-base-dirs>=6.0.2",
"httpx>=0.28.1",
"typing-extensions>=4.12.2",
"pyperclip>=1.9.0",
]
readme = "README.md"
requires-python = ">= 3.10"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
keywords = [
"terminal",
"tui",
"chui",
"documentation",
"markdown",
"markdown-viewer",
"file-viewer",
"file-browser",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Other Audience",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Documentation",
"Topic :: Terminals",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Utilities",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://hike.davep.dev/"
Repository = "https://github.com/davep/hike"
Documentation = "https://hike.davep.dev/"
Source = "https://github.com/davep/hike"
Issues = "https://github.com/davep/hike/issues"
Discussions = "https://github.com/davep/hike/discussions"
[project.scripts]
hike = "hike.__main__:main"
[build-system]
requires = ["uv_build>=0.8.11,<0.9.0"]
build-backend = "uv_build"
[tool.uv]
managed = true
[dependency-groups]
dev = [
"mypy>=1.15.0",
"pre-commit>=4.1.0",
"textual-dev>=1.7.0",
"pytest>=8.3.4",
"mkdocs-material>=9.6.11",
"markdown-exec>=1.10.3",
"codespell>=2.4.1",
"ruff>=0.12.9",
]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.pyright]
venvPath="."
venv=".venv"
exclude=[".venv"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = [
# I think try...expect...pass reads far better.
"SIM105",
]
[tool.ruff.lint.pycodestyle]
max-line-length = 120