-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
81 lines (75 loc) · 2.23 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
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
[build-system]
# See:
# - https://setuptools.pypa.io/en/latest/history.html#v66-1-0
# - https://github.com/pypa/setuptools/issues/3779
requires = ["setuptools >= 66.1"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "termvisage"
description = "Display and browse images in the terminal"
requires-python = ">=3.8"
dependencies = [
"Pillow>=10.1,<11",
"term-image>=0.6,<0.7",
"urwid>=2.1,<3",
]
authors = [
{name = "Toluwaleke Ogundipe", email = "[email protected]"},
]
license = {text = "MIT License"}
readme = "README.md"
keywords = [
"image",
"terminal",
"viewer",
"PIL",
"Pillow",
"console",
"xterm",
"cli",
"tui",
"ANSI",
"ASCII-Art",
"kitty",
"iterm2",
"sixel",
"graphics",
]
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Android",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Graphics :: Viewers",
"Topic :: Terminals :: Terminal Emulators/X Terminals",
"Topic :: Utilities",
]
[project.optional-dependencies]
completions = ["argcomplete>=2,<4"]
[project.scripts]
termvisage = "termvisage.__main__:main"
[project.urls]
Homepage = "https://github.com/AnonymouX47/termvisage"
Documentation = "https://termvisage.readthedocs.io/"
Source = "https://github.com/AnonymouX47/termvisage"
Repository = "https://github.com/AnonymouX47/termvisage.git"
Issues = "https://github.com/AnonymouX47/termvisage/issues"
Changelog = "https://github.com/AnonymouX47/termvisage/blob/main/CHANGELOG.md"
Funding = "https://github.com/AnonymouX47/termvisage#sponsor-this-project"
[tool.isort]
py_version = "auto"
profile = "black"
combine_as_imports = true
[tool.setuptools.dynamic]
version = {attr = "termvisage.version_info"}