X-Git-Url: http://git.scottworley.com/rfc1751/blobdiff_plain/c4374da5ae0994f0ca5e2e243e5577199267d985..812ca2069a573d8abf45a3835f41a8838e5052ea:/setup.py diff --git a/setup.py b/setup.py index 2cbac9c..02854da 100644 --- a/setup.py +++ b/setup.py @@ -2,10 +2,17 @@ from setuptools import setup setup( name='rfc1751', - py_modules=['rfc1751', 'rfc1751wordlist'], + 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', ], - } -) + })