-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (44 loc) · 1.52 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (44 loc) · 1.52 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ansipix"
version = "1.0.1"
authors = [
{ name="EdgeOfAssembly", email="haxbox2000@gmail.com" },
]
description = "A high-performance terminal media viewer for playing images, GIFs, and videos in 24-bit truecolor."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Multimedia :: Graphics :: Viewers",
"Topic :: Multimedia :: Video :: Display",
"Topic :: Terminals",
]
keywords = ["terminal", "tui", "video", "gif", "image", "ansi", "truecolor", "viewer"]
dependencies = [
"opencv-python",
"numpy",
"Pillow",
"miniaudio",
]
[project.urls]
Homepage = "https://github.com/EdgeOfAssembly/ansipix"
"Bug Tracker" = "https://github.com/EdgeOfAssembly/ansipix/issues"
# This section defines the command-line entry point.
# It tells pip to create a script named "ansipix" that calls the "cli" function
# inside the "ansipix.cli" module.
[project.scripts]
ansipix = "ansipix.cli:cli"