Switch to upstream source from tarball ‘xkcdpass_1.4.3.orig.tar.gz’.
[debian_xkcdpass.git] / setup.py
blob8f11f42a979b6d2ec0cd9a8268b769d63fb897b9
1 from setuptools import setup
4 setup(
5 name='xkcdpass',
6 version='1.4.3',
7 author='Steven Tobin',
8 author_email='steventtobin@gmail.com',
9 url='https://github.com/redacted/XKCD-password-generator',
10 description='Generate secure multiword passwords/passphrases, inspired by XKCD',
11 long_description=open('README.rst').read(),
12 packages=['xkcdpass'],
13 zip_safe=False,
14 license='BSD',
15 include_package_data=True,
16 entry_points={
17 'console_scripts': [
18 'xkcdpass = xkcdpass.xkcd_password:main',
21 classifiers=[
22 'Development Status :: 5 - Production/Stable',
23 'Programming Language :: Python :: 2',
24 'Programming Language :: Python :: 3',
25 'Environment :: Console',
26 'Operating System :: OS Independent',
27 'License :: OSI Approved :: BSD License',