File: setup.py

package info (click to toggle)
tftpy 0.4.5-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 128 kB
  • ctags: 103
  • sloc: python: 961; makefile: 31
file content (21 lines) | stat: -rw-r--r-- 634 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python

from distutils.core import setup

setup(name='tftpy',
      version='0.4.5',
      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 :: Any',
        'Environment :: Console',
        ]
      )