setup.py 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. from setuptools import setup
  2. setup(
  3. name='xkcdpass',
  4. version='1.9.0',
  5. author='Steven Tobin',
  6. author_email='steventtobin@gmail.com',
  7. url='https://github.com/redacted/XKCD-password-generator',
  8. description='Generate secure multiword passwords/passphrases, inspired by XKCD',
  9. long_description=open('README.rst').read(),
  10. packages=['xkcdpass'],
  11. zip_safe=False,
  12. license='BSD',
  13. include_package_data=True,
  14. entry_points={
  15. 'console_scripts': [
  16. 'xkcdpass = xkcdpass.xkcd_password:main',
  17. ],
  18. },
  19. classifiers=[
  20. 'Development Status :: 5 - Production/Stable',
  21. 'Programming Language :: Python :: 2',
  22. 'Programming Language :: Python :: 2.7',
  23. 'Programming Language :: Python :: 3',
  24. 'Programming Language :: Python :: 3.2',
  25. 'Programming Language :: Python :: 3.3',
  26. 'Programming Language :: Python :: 3.4',
  27. 'Programming Language :: Python :: 3.5',
  28. 'Environment :: Console',
  29. 'Operating System :: OS Independent',
  30. 'License :: OSI Approved :: BSD License',
  31. ],
  32. )