Merge upstream version “1.9.0”.
[debian_xkcdpass.git] / setup.py
blobcf5cd4a961aa2271b514bd97dca55e12dc267799
1 from setuptools import setup
4 setup(
5 name='xkcdpass',
6 version='1.9.0',
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 :: 2.7',
25 'Programming Language :: Python :: 3',
26 'Programming Language :: Python :: 3.2',
27 'Programming Language :: Python :: 3.3',
28 'Programming Language :: Python :: 3.4',
29 'Programming Language :: Python :: 3.5',
30 'Environment :: Console',
31 'Operating System :: OS Independent',
32 'License :: OSI Approved :: BSD License',