add toml files
This commit is contained in:
@@ -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
|
||||||
|
|||||||
36
py-packages/SimpleWebPage/pyproject.toml
Normal file
36
py-packages/SimpleWebPage/pyproject.toml
Normal 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"]
|
||||||
35
py-packages/TSVFilter/pyproject.toml
Normal file
35
py-packages/TSVFilter/pyproject.toml
Normal 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"]
|
||||||
@@ -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:
|
||||||
|
|||||||
35
py-packages/ffmpeg-parser/pyproject.toml
Normal file
35
py-packages/ffmpeg-parser/pyproject.toml
Normal 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"
|
||||||
|
|
||||||
34
py-packages/imagelist2/pyproject.toml
Normal file
34
py-packages/imagelist2/pyproject.toml
Normal 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"
|
||||||
|
|
||||||
35
py-packages/markslider/pyproject.toml
Normal file
35
py-packages/markslider/pyproject.toml
Normal 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"]
|
||||||
35
py-packages/spiller/pyproject.toml
Normal file
35
py-packages/spiller/pyproject.toml
Normal 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"]
|
||||||
35
py-packages/sshtunnelier/pyproject.toml
Normal file
35
py-packages/sshtunnelier/pyproject.toml
Normal 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"]
|
||||||
Reference in New Issue
Block a user