]>
Commit | Line | Data |
---|---|---|
27ff981f SW |
1 | from setuptools import setup |
2 | ||
3 | setup( | |
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 | }) |