-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (52 loc) · 1.73 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (52 loc) · 1.73 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
import re
from pathlib import Path
from setuptools import setup
README = Path(__file__).parent / "README.md"
DOTZ = Path(__file__).parent / "dotz.py"
version = re.search(
r'^_VERSION_\s*=\s*[\"\']([^\"\']+)[\"\']',
DOTZ.read_text(encoding="utf-8"),
re.MULTILINE,
).group(1)
setup(
name="dotz",
version=version,
description="Render images and video previews as Braille art in the terminal with color and animation support.",
long_description=README.read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
author="Arun Prakash Jana",
license="MIT",
url="https://github.com/jarun/dotz",
project_urls={
"Homepage": "https://github.com/jarun/dotz",
"Repository": "https://github.com/jarun/dotz",
"Issues": "https://github.com/jarun/dotz/issues",
},
py_modules=["dotz"],
install_requires=[
"numpy>=1.20",
"Pillow>=8.0",
],
entry_points={
"console_scripts": [
"dotz=dotz:main",
],
},
python_requires=">=3.7",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console :: Curses",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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 :: Multimedia :: Graphics",
"Topic :: Terminals",
],
keywords="terminal image-viewer braille curses gif video ffmpeg",
)