]> git.scottworley.com Git - rfc1751/blame - setup.py
Release 1.0.0
[rfc1751] / setup.py
CommitLineData
27ff981f
SW
1from setuptools import setup
2
3setup(
4 name='rfc1751',
812ca206
SW
5 version='1.0.0',
6 description='Command line tool for RFC1751 (aka S/Key) numbers-as-word-lists',
7 author='Scott Worley',
8 author_email='scottworley@scottworley.com',
9 url='https://git.scottworley.com/rfc1751',
10 license='ISC',
11 py_modules=[
12 'rfc1751',
13 'rfc1751wordlist'],
27ff981f
SW
14 entry_points={
15 'console_scripts': [
16 'rfc1751 = rfc1751:main',
17 ],
812ca206 18 })