Skip to content

Commit

Permalink
Fix README.rst to make it compatible with twine
Browse files Browse the repository at this point in the history
minor changes to documentation / dates.
  • Loading branch information
sylikc committed Feb 28, 2022
1 parent 3e097bb commit 353872e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
4 changes: 2 additions & 2 deletions COMPATIBILITY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ possible.
----

v0.1.x - v0.2.0 = smarnach code, API compatible
v0.2.1 - v0.4.13 = code with all PRs, a superset of functionality on Exiftool class
v0.5.0 - = not API compatible with the v0.4.x series. See comments below:
v0.2.1 - v0.4.13 = original v0.2 code with all PRs, a superset of functionality on Exiftool class
v0.5.0 - = not API compatible with the v0.4.x series. Broke down functionality stability by classes. See comments below:


----
Expand Down
2 changes: 1 addition & 1 deletion COPYING.BSD
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2012 Sven Marnach
Copyright 2012 Sven Marnach, 2019-2022 Kevin M (sylikc)
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
10 changes: 4 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,16 @@ process for every single query.
Example Usage
=============

.. code-block:: python
:caption: Quick Sample
:linenos:
Simple example: ::

import exiftool

files = ["a.jpg", "b.png", "c.tif"]
with exiftool.ExifToolHelper() as et:
metadata = et.get_metadata(files)
metadata = et.get_metadata(files)
for d in metadata:
print("{:20.20} {:20.20}".format(d["SourceFile"],
d["EXIF:DateTimeOriginal"]))
print("{:20.20} {:20.20}".format(d["SourceFile"],
d["EXIF:DateTimeOriginal"]))


Getting PyExifTool
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@

packages=find_packages(
where=".",
exclude = ['test*',]
exclude = ['test*','doc*']
),

extras_require={
Expand Down

0 comments on commit 353872e

Please sign in to comment.