add toml files

This commit is contained in:
Q
2024-06-26 22:23:39 +03:00
parent 3a74c3e102
commit 21539e31d1
9 changed files with 247 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ import parse
from ansi import cursor
from datetime import datetime
__version__ = 1.2
__version__ = "1.2"
class Chopper:

View File

@@ -0,0 +1,35 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ffmpegparser"
dynamic = ["version"]
description = 'View parse ffmpeg and ffprobe output nicer'
requires-python = ">=3.8"
license = "MIT"
keywords = []
authors = [
{ name = "Q", email = "q@six9.net" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["ansi","parse"]
[project.scripts]
ffmpeg-parser = "ffmpegparser.ffmpegparser:main"
ffprobe-parser = "ffmpegparser.ffprobeparser:main"
[tool.hatch.version]
path = "ffmpegparser/ffmpegparser.py"