]> git.scottworley.com Git - rfc1751/blame - setup.py
Move word list to separate file
[rfc1751] / setup.py
CommitLineData
27ff981f
SW
1from setuptools import setup
2
3setup(
4 name='rfc1751',
33598cc5 5 py_modules=['rfc1751', 'rfc1751wordlist'],
27ff981f
SW
6 entry_points={
7 'console_scripts': [
8 'rfc1751 = rfc1751:main',
9 ],
10 }
11)