Skip to content

Commit

Permalink
Add zipsafe to setup.py (#109)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
pmaupin authored Sep 18, 2017
1 parent 77d3814 commit d26f86e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ Revisions:
- Better support under Python 3.x for in-memory PDF file-like objects
- Some pagemerge and Unicode patches added
- Changes to logging allow better coexistence with other packages
- Fix for "from pdfrw import *"
- Fix for "from pdfrw import \*"
- New fancy_watermark.py example shows off capabilities of pagemerge.py
- metadata.py example renamed to cat.py

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,5 @@
'Topic :: Utilities',
],
keywords='pdf vector graphics PDF nup watermark split join merge',
zip_safe=True,
)

0 comments on commit d26f86e

Please sign in to comment.