efd248f9c9
git-svn-id: https://tftpy.svn.sourceforge.net/svnroot/tftpy/trunk@56 63283fd4-ec1e-0410-9879-cb7f675518da
21 lines
636 B
Python
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',
|
|
]
|
|
)
|