Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
# Conflicts:
#	poetry.lock
#	pyproject.toml
  • Loading branch information
TimeTravelPenguin committed Jan 15, 2024
2 parents ae8791d + b0067f9 commit 8e1492d
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 9 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/screenshots.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Rich-codex
on:
workflow_dispatch:
push:
branches:
- dev-implement-click
jobs:
rich_codex:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3

- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12

- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true

- name: Generate terminal images with rich-codex
uses: ewels/rich-codex@v1
with:
commit_changes: "true"
clean_img_paths: docs/img/*.svg
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -233,3 +233,4 @@ test audio
.vscode
files
.idea
bundles
35 changes: 27 additions & 8 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "BAET"
version = "0.1.3"
version = "1.0.0a0"
# TODO: Make PEP621 compliant - https://github.com/python-poetry/roadmap/issues/3
#requires-python = ">=3.11"
description = "A tool to bulk extract audio tracks from video using FFmpeg"
Expand Down Expand Up @@ -37,6 +37,8 @@ repository = "https://github.com/TimeTravelPenguin/BulkAudioExtractTool"

[tool.poetry.scripts]
baet = "BAET.__main__:main"
cli = "BAET.cli.cli:test"
debug = "BAET.debug.__main__:main"

[tool.poetry.dev-dependencies]
black = "*"
Expand Down Expand Up @@ -65,6 +67,7 @@ more-itertools = "^10.1.0"
pydantic = "^2.5.2"
rich = "^13.7.0"
rich-argparse = "^1.4.0"
rich-click = "^1.7.3"

[tool.black]
line-length = 120
Expand Down

0 comments on commit 8e1492d

Please sign in to comment.