]> git.scottworley.com Git - rfc1751/blame_incremental - setup.py
.gitignore __pycache__
[rfc1751] / setup.py
... / ...
CommitLineData
1from setuptools import setup
2
3setup(
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 })