Skip to content

Commit d26f86e

Browse files
authored
Add zipsafe to setup.py (#109)
* Add zip_safe into setup.py Adding the keyword was proposed by pyroma. Setting it to True is probably harmless, as there's nothing but Python in the package. * Escape star character in README.rst This error was kindly reported by pyroma. * Add Python3.6 to the list of supported versions
1 parent 77d3814 commit d26f86e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ Revisions:
768768
- Better support under Python 3.x for in-memory PDF file-like objects
769769
- Some pagemerge and Unicode patches added
770770
- Changes to logging allow better coexistence with other packages
771-
- Fix for "from pdfrw import *"
771+
- Fix for "from pdfrw import \*"
772772
- New fancy_watermark.py example shows off capabilities of pagemerge.py
773773
- metadata.py example renamed to cat.py
774774

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,5 @@
3636
'Topic :: Utilities',
3737
],
3838
keywords='pdf vector graphics PDF nup watermark split join merge',
39+
zip_safe=True,
3940
)

0 commit comments

Comments
 (0)