-
Notifications
You must be signed in to change notification settings - Fork 48
/
pyproject.toml
48 lines (43 loc) · 1.39 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
[tool.poetry]
name = "frogmouth"
homepage = "https://github.com/Textualize/frogmouth"
version = "0.9.2"
description = "A Markdown document viewer for the terminal"
authors = ["Dave Pearson <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "frogmouth"}]
classifiers = [
"Development Status :: 4 - Beta",
"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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup :: Markdown",
]
[tool.poetry.dependencies]
python = "^3.8"
textual = "==0.53.1"
typing-extensions = "^4.5.0"
httpx = "^0.24.1"
xdg = "^6.0.0"
[tool.poetry.group.dev.dependencies]
textual-dev = "^1.1"
mypy = "^1.1.1"
pylint = "^2.17.1"
pre-commit = "^3.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
frogmouth = "frogmouth.app.app:run"