]> git.scottworley.com Git - rfc1751/blobdiff - setup.py
Release 1.0.0
[rfc1751] / setup.py
index 2cbac9ca706b433b7df7a59acf7c148baf92da15..02854dacef61ca0a951e3d15f33354fc57fcdf1d 100644 (file)
--- 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',
         ],
-    }
-)
+    })