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