To be able to distribute the package, we need to include the static word lists
into the package module.
Also, add MANIFEST.in to tell setup.py that it's able to include the files. The
MANIFEST.in file is generic and any new added files into xkcdpass/static/ will
be added into new versions of the package.
--- /dev/null
+include xkcdpass/static/*
setup(
name='xkcdpass',
- version='1.0',
+ version='1.0.0',
author='Steven Tobin',
author_email='steventtobin@gmail.com',
url='https://github.com/redacted/XKCD-password-generator',
description='Generate secure multiword passwords/passphrases, inspired by XKCD',
long_description=open('README.mkd').read(),
- package_dir={'': 'xkcdpass'},
packages=['xkcdpass'],
zip_safe=False,
license='BSD',