ptulsconv 2.2.2__tar.gz → 2.2.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/PKG-INFO +4 -1
  2. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/__main__.py +2 -2
  3. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/pyproject.toml +5 -2
  4. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/LICENSE +0 -0
  5. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/README.md +0 -0
  6. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/__init__.py +0 -0
  7. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/broadcast_timecode.py +0 -0
  8. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/commands.py +0 -0
  9. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/docparser/__init__.py +0 -0
  10. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/docparser/adr_entity.py +0 -0
  11. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/docparser/doc_entity.py +0 -0
  12. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/docparser/generic_entity.py +0 -0
  13. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/docparser/pt_doc_parser.py +0 -0
  14. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/docparser/tag_compiler.py +0 -0
  15. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/docparser/tag_mapping.py +0 -0
  16. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/docparser/tagged_string_parser_visitor.py +0 -0
  17. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/footage.py +0 -0
  18. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/movie_export.py +0 -0
  19. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/pdf/__init__.py +0 -0
  20. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/pdf/continuity.py +0 -0
  21. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/pdf/line_count.py +0 -0
  22. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/pdf/recordist_log.py +0 -0
  23. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/pdf/summary_log.py +0 -0
  24. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/pdf/supervisor_1pg.py +0 -0
  25. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/pdf/talent_sides.py +0 -0
  26. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/reporting.py +0 -0
  27. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/validations.py +0 -0
  28. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/xml/common.py +0 -0
  29. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/xslt/AvidMarkers.xsl +0 -0
  30. {ptulsconv-2.2.2 → ptulsconv-2.2.4}/ptulsconv/xslt/SRT.xsl +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: ptulsconv
3
- Version: 2.2.2
3
+ Version: 2.2.4
4
4
  Summary: Read Pro Tools Text exports and generate PDF ADR Reports, JSON
5
5
  License: MIT License
6
6
 
@@ -35,12 +35,15 @@ Classifier: Programming Language :: Python :: 3.9
35
35
  Classifier: Programming Language :: Python :: 3.10
36
36
  Classifier: Programming Language :: Python :: 3.11
37
37
  Classifier: Programming Language :: Python :: 3.12
38
+ Classifier: Programming Language :: Python :: 3.13
38
39
  Classifier: Development Status :: 5 - Production/Stable
39
40
  Classifier: Topic :: Text Processing :: Filters
40
41
  Provides-Extra: doc
41
42
  Requires-Dist: parsimonious (>=0.10.0,<0.11.0)
42
43
  Requires-Dist: py-ptsl (>=101.1.0,<102.0.0)
43
44
  Requires-Dist: reportlab (>=4.4.1,<5.0.0)
45
+ Requires-Dist: sphinx (>=5.3.0) ; extra == "doc"
46
+ Requires-Dist: sphinx_rtd_theme (>=1.1.1) ; extra == "doc"
44
47
  Requires-Dist: tqdm (>=4.67.1,<5.0.0)
45
48
  Project-URL: Documentation, https://ptulsconv.readthedocs.io/
46
49
  Project-URL: Issues, https://github.com/iluvcapra/ptulsconv/issues
@@ -2,7 +2,7 @@ from optparse import OptionParser, OptionGroup
2
2
  import datetime
3
3
  import sys
4
4
 
5
- from ptulsconv import __name__, __copyright__
5
+ import ptulsconv
6
6
  from ptulsconv.commands import convert
7
7
  from ptulsconv.reporting import print_status_style, \
8
8
  print_banner_style, print_section_header_style, \
@@ -82,7 +82,7 @@ def main():
82
82
 
83
83
  parser.add_option_group(informational_options)
84
84
 
85
- print_banner_style(__copyright__)
85
+ print_banner_style(ptulsconv.__name__)
86
86
 
87
87
  (options, args) = parser.parse_args(sys.argv)
88
88
 
@@ -10,6 +10,7 @@ classifiers = [
10
10
  "Programming Language :: Python :: 3.10",
11
11
  "Programming Language :: Python :: 3.11",
12
12
  "Programming Language :: Python :: 3.12",
13
+ "Programming Language :: Python :: 3.13",
13
14
  "Development Status :: 5 - Production/Stable",
14
15
  "Topic :: Text Processing :: Filters"
15
16
  ]
@@ -19,7 +20,7 @@ keywords = ["text-processing", "parsers", "film",
19
20
 
20
21
  [tool.poetry]
21
22
  name = "ptulsconv"
22
- version = "2.2.2"
23
+ version = "2.2.4"
23
24
  description = "Read Pro Tools Text exports and generate PDF ADR Reports, JSON"
24
25
  authors = ["Jamie Hardt <jamiehardt@me.com>"]
25
26
  license = "MIT"
@@ -31,12 +32,14 @@ parsimonious = "^0.10.0"
31
32
  tqdm = "^4.67.1"
32
33
  reportlab = "^4.4.1"
33
34
  py-ptsl = "^101.1.0"
35
+ sphinx_rtd_theme = {version= '>= 1.1.1', optional=true}
36
+ sphinx = {version= '>= 5.3.0', optional=true}
34
37
 
35
38
  [tool.poetry.extras]
36
39
  doc = ['sphinx', 'sphinx_rtd_theme']
37
40
 
38
41
  [tool.poetry.scripts]
39
- wavinfo = 'ptulsconv.__main__:main'
42
+ ptulsconv = 'ptulsconv.__main__:main'
40
43
 
41
44
 
42
45
  [project.urls]
File without changes
File without changes