]> git.scottworley.com Git - rfc1751/blob - setup.py
Begin
[rfc1751] / setup.py
1 from setuptools import setup
2
3 setup(
4 name='rfc1751',
5 py_modules=['rfc1751'],
6 entry_points={
7 'console_scripts': [
8 'rfc1751 = rfc1751:main',
9 ],
10 }
11 )