Upgraded osxmetadata to add new extended attributes

This commit is contained in:
Rhet Turnbull
2021-07-16 19:45:19 -07:00
parent d627cfc4fa
commit 7d81b94c16
4 changed files with 10 additions and 3 deletions

View File

@@ -227,10 +227,17 @@ EXTENDED_ATTRIBUTE_NAMES = [
"authors", "authors",
"comment", "comment",
"copyright", "copyright",
"creator",
"description", "description",
"findercomment", "findercomment",
"headline", "headline",
"keywords", "keywords",
"participants",
"projects",
"rating",
"subject",
"title",
"version",
] ]
EXTENDED_ATTRIBUTE_NAMES_QUOTED = [f"'{x}'" for x in EXTENDED_ATTRIBUTE_NAMES] EXTENDED_ATTRIBUTE_NAMES_QUOTED = [f"'{x}'" for x in EXTENDED_ATTRIBUTE_NAMES]

View File

@@ -1,3 +1,3 @@
""" version info """ """ version info """
__version__ = "0.42.61" __version__ = "0.42.62"

View File

@@ -15,7 +15,7 @@ dataclasses==0.7;python_version<'3.7'
wurlitzer==2.1.0 wurlitzer==2.1.0
photoscript==0.1.3 photoscript==0.1.3
toml==0.10.2 toml==0.10.2
osxmetadata==0.99.14 osxmetadata==0.99.25
textx==2.3.0 textx==2.3.0
rich==10.2.2 rich==10.2.2
bitmath==1.3.3.1 bitmath==1.3.3.1

View File

@@ -90,7 +90,7 @@ setup(
"wurlitzer==2.1.0", "wurlitzer==2.1.0",
"photoscript==0.1.3", "photoscript==0.1.3",
"toml==0.10.2", "toml==0.10.2",
"osxmetadata==0.99.14", "osxmetadata==0.99.25",
"textx==2.3.0", "textx==2.3.0",
"rich==10.2.2", "rich==10.2.2",
"bitmath==1.3.3.1", "bitmath==1.3.3.1",