setup(
name='rfc1751',
- py_modules=['rfc1751'],
+ version='1.0.0',
+ description='Command line tool for RFC1751 (aka S/Key) numbers-as-word-lists',
+ author='Scott Worley',
+ author_email='scottworley@scottworley.com',
+ url='https://git.scottworley.com/rfc1751',
+ license='ISC',
+ py_modules=[
+ 'rfc1751',
+ 'rfc1751wordlist'],
entry_points={
'console_scripts': [
'rfc1751 = rfc1751:main',
],
- }
-)
+ })