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

@@ -16,6 +16,7 @@ help: ## *:・゚✧*:・゚✧ This help *:・゚✧*:・゚✧
clean: ## Clean build and .egg folder in py modules clean: ## Clean build and .egg folder in py modules
find . -depth -type d -name __pycache__ -exec rm -vr \{\} \; find . -depth -type d -name __pycache__ -exec rm -vr \{\} \;
find . -depth -type d -name build -exec rm -vr \{\} \; find . -depth -type d -name build -exec rm -vr \{\} \;
find . -depth -type d -name dist -exec rm -vr \{\} \;
find . -depth -type d -name '*.egg-info' -exec rm -vr \{\} \; find . -depth -type d -name '*.egg-info' -exec rm -vr \{\} \;
pipx: ## Install all packages with pipx pipx: ## Install all packages with pipx

View File

@@ -0,0 +1,36 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "SimpleWebPage"
dynamic = ["version"]
description = 'HTML file index generator.'
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 = ["markdown>=3.3.4"]
[project.scripts]
SimpleWebPage="simplewebpage:main"
simplewebpage="simplewebpage:main"
[tool.hatch.version]
path = "simplewebpage/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["simplewebpage"]

View File

@@ -0,0 +1,35 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "TSVFilter"
dynamic = ["version"]
description = 'TSV column filter.'
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 = []
[project.scripts]
TSVFilter="TSVFilter:main"
[tool.hatch.version]
path = "TSVFilter/filter.py"
[tool.hatch.build.targets.wheel]
packages = ["TSVFilter"]

View File

@@ -8,7 +8,7 @@ import parse
from ansi import cursor from ansi import cursor
from datetime import datetime from datetime import datetime
__version__ = 1.2 __version__ = "1.2"
class Chopper: 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"

View File

@@ -0,0 +1,34 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "imagelist2"
dynamic = ["version"]
description = 'Maintains a list of images sqlite file'
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 = ["PyTurboJPEG", "Pillow", "ImageHash", "numpy", "tqdm"]
[project.scripts]
image-list = "imagelist2:main"
[tool.hatch.version]
path = "imagelist2/__init__.py"

View File

@@ -0,0 +1,35 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "markslider"
dynamic = ["version"]
description = 'View markdown files as slides in terminal'
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 = ["pygments", "climage"]
[project.scripts]
markslider = "markslider.markslider:main"
[tool.hatch.version]
path = "markslider/markslider.py"
[tool.hatch.build.targets.wheel]
packages = ["markslider"]

View File

@@ -0,0 +1,35 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "spiller"
dynamic = ["version"]
description = 'Very simple password storage, that encrypts with GPG cmdline tool.'
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 = []
[project.scripts]
spill="spiller.spiller:main"
[tool.hatch.version]
path = "spiller/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["spiller"]

View File

@@ -0,0 +1,35 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sshtunnelier"
dynamic = ["version"]
description = 'SSH tunnel manager (yet another)'
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 = ["psutil", "pyyaml"]
[project.scripts]
ssh-tunnelier = "sshtunnelier:main"
[tool.hatch.version]
path = "sshtunnelier/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["sshtunnelier"]