mirror of
https://github.com/iluvcapra/ptulsconv.git
synced 2025-12-31 08:50:48 +00:00
Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4a0d19ade1 | ||
|
|
df6c783c51 | ||
|
|
f0b232b2b6 | ||
|
|
519c6403ba | ||
|
|
d29c36eafa | ||
|
|
2095a1fb75 | ||
|
|
70defcc46c | ||
|
|
d156b6df89 | ||
|
|
3ba9d7933e | ||
|
|
b0c40ee0b6 | ||
|
|
921b0f07af | ||
|
|
57764bc859 | ||
|
|
779c93282c | ||
|
|
9684be6c7e | ||
|
|
484a70fc8e | ||
|
|
5aa005c317 | ||
|
|
454adea3d1 | ||
|
|
1e6546dab5 | ||
|
|
8b262d3bfb | ||
|
|
630e7960dc |
2
.github/workflows/python-package.yml
vendored
2
.github/workflows/python-package.yml
vendored
@@ -16,7 +16,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
|
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2.5.0
|
- uses: actions/checkout@v2.5.0
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
# For the full list of built-in configuration values, see the documentation:
|
# For the full list of built-in configuration values, see the documentation:
|
||||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
||||||
|
|
||||||
|
import importlib
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
|
|
||||||
@@ -15,9 +16,9 @@ import ptulsconv
|
|||||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
||||||
|
|
||||||
project = 'ptulsconv'
|
project = 'ptulsconv'
|
||||||
copyright = '2019-2023 Jamie Hardt. All rights reserved'
|
copyright = '2019-2025 Jamie Hardt. All rights reserved'
|
||||||
# author = ptulsconv.__author__
|
version = "Version 2"
|
||||||
release = ptulsconv.__version__
|
release = importlib.metadata.version("ptulsconv")
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||||||
|
|||||||
@@ -6,7 +6,12 @@ Usage Form
|
|||||||
|
|
||||||
Invocations of ptulsconv take the following form:
|
Invocations of ptulsconv take the following form:
|
||||||
|
|
||||||
ptulsconv [options] IN_FILE
|
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.
|
||||||
|
|
||||||
|
|
||||||
Flags
|
Flags
|
||||||
|
|||||||
@@ -1,9 +1,3 @@
|
|||||||
"""
|
"""
|
||||||
Parse and convert Pro Tools text exports
|
Parse and convert Pro Tools text exports
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = '2.2.1'
|
|
||||||
__author__ = 'Jamie Hardt'
|
|
||||||
__license__ = 'MIT'
|
|
||||||
__copyright__ = "%s %s (c) 2025 %s. All rights reserved." \
|
|
||||||
% (__name__, __version__, __author__)
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ from optparse import OptionParser, OptionGroup
|
|||||||
import datetime
|
import datetime
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from ptulsconv import __name__, __copyright__
|
import ptulsconv
|
||||||
from ptulsconv.commands import convert
|
from ptulsconv.commands import convert
|
||||||
from ptulsconv.reporting import print_status_style, \
|
from ptulsconv.reporting import print_status_style, \
|
||||||
print_banner_style, print_section_header_style, \
|
print_banner_style, print_section_header_style, \
|
||||||
@@ -82,7 +82,7 @@ def main():
|
|||||||
|
|
||||||
parser.add_option_group(informational_options)
|
parser.add_option_group(informational_options)
|
||||||
|
|
||||||
print_banner_style(__copyright__)
|
print_banner_style(ptulsconv.__name__)
|
||||||
|
|
||||||
(options, args) = parser.parse_args(sys.argv)
|
(options, args) = parser.parse_args(sys.argv)
|
||||||
|
|
||||||
|
|||||||
@@ -1,13 +1,5 @@
|
|||||||
[build-system]
|
|
||||||
requires = ["flit_core >=3.2,<4"]
|
|
||||||
build-backend = "flit_core.buildapi"
|
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "ptulsconv"
|
name = "ptulsconv"
|
||||||
authors = [
|
|
||||||
{name = "Jamie Hardt", email = "jamiehardt@me.com"},
|
|
||||||
]
|
|
||||||
readme = "README.md"
|
|
||||||
license = { file = "LICENSE" }
|
license = { file = "LICENSE" }
|
||||||
classifiers = [
|
classifiers = [
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
@@ -18,36 +10,43 @@ classifiers = [
|
|||||||
"Programming Language :: Python :: 3.10",
|
"Programming Language :: Python :: 3.10",
|
||||||
"Programming Language :: Python :: 3.11",
|
"Programming Language :: Python :: 3.11",
|
||||||
"Programming Language :: Python :: 3.12",
|
"Programming Language :: Python :: 3.12",
|
||||||
|
"Programming Language :: Python :: 3.13",
|
||||||
"Development Status :: 5 - Production/Stable",
|
"Development Status :: 5 - Production/Stable",
|
||||||
"Topic :: Text Processing :: Filters"
|
"Topic :: Text Processing :: Filters"
|
||||||
]
|
]
|
||||||
requires-python = ">=3.8"
|
requires-python = ">=3.8"
|
||||||
dynamic = ["version", "description"]
|
|
||||||
keywords = ["text-processing", "parsers", "film",
|
keywords = ["text-processing", "parsers", "film",
|
||||||
"broadcast", "editing", "editorial"]
|
"broadcast", "editing", "editorial"]
|
||||||
dependencies = [
|
|
||||||
'parsimonious',
|
|
||||||
'tqdm',
|
|
||||||
'reportlab',
|
|
||||||
'py-ptsl >= 101.1.0'
|
|
||||||
]
|
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[tool.poetry]
|
||||||
doc = [
|
|
||||||
"Sphinx ~= 5.3.0",
|
|
||||||
"sphinx-rtd-theme >= 1.1.1"
|
|
||||||
]
|
|
||||||
|
|
||||||
[tool.flit.module]
|
|
||||||
name = "ptulsconv"
|
name = "ptulsconv"
|
||||||
|
version = "2.2.4"
|
||||||
|
description = "Read Pro Tools Text exports and generate PDF ADR Reports, JSON"
|
||||||
|
authors = ["Jamie Hardt <jamiehardt@me.com>"]
|
||||||
|
license = "MIT"
|
||||||
|
readme = "README.md"
|
||||||
|
|
||||||
[project.scripts]
|
[tool.poetry.dependencies]
|
||||||
ptulsconv = "ptulsconv.__main__:main"
|
python = "^3.8"
|
||||||
|
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}
|
||||||
|
|
||||||
[project.entry_points.console_scripts]
|
[tool.poetry.extras]
|
||||||
|
doc = ['sphinx', 'sphinx_rtd_theme']
|
||||||
|
|
||||||
|
[tool.poetry.scripts]
|
||||||
ptulsconv = 'ptulsconv.__main__:main'
|
ptulsconv = 'ptulsconv.__main__:main'
|
||||||
|
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
Source = 'https://github.com/iluvcapra/ptulsconv'
|
Source = 'https://github.com/iluvcapra/ptulsconv'
|
||||||
Issues = 'https://github.com/iluvcapra/ptulsconv/issues'
|
Issues = 'https://github.com/iluvcapra/ptulsconv/issues'
|
||||||
Documentation = 'https://ptulsconv.readthedocs.io/'
|
Documentation = 'https://ptulsconv.readthedocs.io/'
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["poetry-core"]
|
||||||
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|||||||
Reference in New Issue
Block a user