Because of a print statement in the example, the module will not install
cleanly on Python3.
Also bamp version.
setup(
name='xkcdpass',
- version='1.0.1',
+ version='1.0.2',
author='Steven Tobin',
author_email='steventtobin@gmail.com',
url='https://github.com/redacted/XKCD-password-generator',
mywords = generate_wordlist(wordfile='3esl.txt', min_length=5, max_length=8,)
# create a password with the acrostic 'face'
-print generate_xkcdpassword(mywords, acrostic="face")
+print(generate_xkcdpassword(mywords, acrostic="face"))