Skip to content

Commit a6c7f16

Browse files
authored
fix imports (#233)
1 parent 99cefe2 commit a6c7f16

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

README.rst

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,19 +136,25 @@ Pass the ``-q`` or ``--quick`` command line arguments, or as:
136136

137137
.. code-block:: python
138138
139-
tags = exifread.process_file(file_handle, details=False, extract_thumbnail=False)
139+
tags = exifread.process_file(
140+
file_handle, details=False, extract_thumbnail=False
141+
)
140142
141143
To process makernotes only, without extracting the thumbnail image (if any):
142144

143145
.. code-block:: python
144146
145-
tags = exifread.process_file(file_handle, details=True, extract_thumbnail=False)
147+
tags = exifread.process_file(
148+
file_handle, details=True, extract_thumbnail=False
149+
)
146150
147151
To extract the thumbnail image (if any), without processing makernotes:
148152

149153
.. code-block:: python
150154
151-
tags = exifread.process_file(file_handle, details=False, extract_thumbnail=True)
155+
tags = exifread.process_file(
156+
file_handle, details=False, extract_thumbnail=True
157+
)
152158
153159
Stop at a Given Tag
154160
===================

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Changelog = "https://github.com/ianare/exif-py/blob/master/ChangeLog.rst"
4848

4949

5050
[tool.setuptools.packages.find]
51-
include = ["exifread"]
51+
include = ["exifread*"]
5252
exclude = ["tests"]
5353

5454

0 commit comments

Comments
 (0)