This repository has been archived on 2023-10-10. You can view files and clone it, but cannot push or open issues or pull requests.
khepri-tftpy/setup.py
msoulier efd248f9c9 Rolling to version 0.4.1.
git-svn-id: https://tftpy.svn.sourceforge.net/svnroot/tftpy/trunk@56 63283fd4-ec1e-0410-9879-cb7f675518da
2006-12-17 17:09:26 +00:00

21 lines
636 B
Python

#!/usr/bin/env python
from distutils.core import setup
setup(name='tftpy',
version='0.4.1',
description='Python TFTP library',
author='Michael P. Soulier',
author_email='msoulier@digitaltorque.ca',
url='http://digitaltorque.ca',
packages=['tftpy'],
scripts=['bin/tftpy_client.py','bin/tftpy_server.py'],
classifiers=[
'Development Status :: Alpha',
'License :: OSI Approved :: CNRI Python License',
'Topic :: Networking :: TFTP',
'Intended Audience :: Developers',
'Operating System :: POSIX',
'Environment :: Console',
]
)