mirror of
https://github.com/iluvcapra/ptulsconv.git
synced 2025-12-31 17:00:46 +00:00
Compare commits
1 Commits
v2.2.3
...
maint-poet
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8e466ea9fc |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -109,3 +109,5 @@ lcov.info
|
||||
|
||||
.vim
|
||||
.vscode
|
||||
|
||||
poetry.lock
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
# For the full list of built-in configuration values, see the documentation:
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
||||
|
||||
import importlib
|
||||
import sys
|
||||
import os
|
||||
|
||||
@@ -16,9 +15,9 @@ import ptulsconv
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
||||
|
||||
project = 'ptulsconv'
|
||||
copyright = '2019-2025 Jamie Hardt. All rights reserved'
|
||||
version = "Version 2"
|
||||
release = importlib.metadata.version("ptulsconv")
|
||||
copyright = '2019-2023 Jamie Hardt. All rights reserved'
|
||||
# author = ptulsconv.__author__
|
||||
release = ptulsconv.__version__
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||||
|
||||
@@ -6,12 +6,7 @@ Usage Form
|
||||
|
||||
Invocations of ptulsconv take the following form:
|
||||
|
||||
ptulsconv [options] [IN_FILE]
|
||||
|
||||
|
||||
`IN_FILE` is a Pro Tools text export in UTF-8 encoding. If `IN_FILE` is
|
||||
missing, `ptulsconv` will attempt to connect to Pro Tools and read cue data
|
||||
from the selected tracks of the currently-open session.
|
||||
ptulsconv [options] IN_FILE
|
||||
|
||||
|
||||
Flags
|
||||
|
||||
@@ -2,8 +2,7 @@ from optparse import OptionParser, OptionGroup
|
||||
import datetime
|
||||
import sys
|
||||
|
||||
from ptulsconv import __name__
|
||||
import ptulsconv
|
||||
from ptulsconv import __name__, __copyright__
|
||||
from ptulsconv.commands import convert
|
||||
from ptulsconv.reporting import print_status_style, \
|
||||
print_banner_style, print_section_header_style, \
|
||||
@@ -83,7 +82,7 @@ def main():
|
||||
|
||||
parser.add_option_group(informational_options)
|
||||
|
||||
print_banner_style(ptulsconv.__copyright__)
|
||||
print_banner_style(__copyright__)
|
||||
|
||||
(options, args) = parser.parse_args(sys.argv)
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ keywords = ["text-processing", "parsers", "film",
|
||||
|
||||
[tool.poetry]
|
||||
name = "ptulsconv"
|
||||
version = "2.2.3"
|
||||
version = "2.2.2"
|
||||
description = "Read Pro Tools Text exports and generate PDF ADR Reports, JSON"
|
||||
authors = ["Jamie Hardt <jamiehardt@me.com>"]
|
||||
license = "MIT"
|
||||
@@ -31,8 +31,6 @@ parsimonious = "^0.10.0"
|
||||
tqdm = "^4.67.1"
|
||||
reportlab = "^4.4.1"
|
||||
py-ptsl = "^101.1.0"
|
||||
sphinx_rtd_theme = {version= '>= 1.1.1', optional=true}
|
||||
sphinx = {version= '>= 5.3.0', optional=true}
|
||||
|
||||
[tool.poetry.extras]
|
||||
doc = ['sphinx', 'sphinx_rtd_theme']
|
||||
|
||||
Reference in New Issue
Block a user