forked from redacted/XKCD-password-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 869 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup
setup(
name='xkcdpass',
version='1.1.0',
author='Steven Tobin',
author_email='[email protected]',
url='https://github.com/redacted/XKCD-password-generator',
description='Generate secure multiword passwords/passphrases, inspired by XKCD',
long_description=open('README.rst').read(),
packages=['xkcdpass'],
zip_safe=False,
license='BSD',
include_package_data=True,
entry_points={
'console_scripts': [
'xkcdpass = xkcdpass.xkcd_password:main',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Environment :: Console',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
],
)