]> git.scottworley.com Git - rfc1751/blob - setup.py
.gitignore __pycache__
[rfc1751] / setup.py
1 from setuptools import setup
2
3 setup(
4 name='rfc1751',
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'],
14 entry_points={
15 'console_scripts': [
16 'rfc1751 = rfc1751:main',
17 ],
18 })