summaryrefslogtreecommitdiff
path: root/setup.py
blob: 402ec6029ef0c00c8ca623ad2073eb2497de1ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

from distutils.core import setup

setup(name="pysnmp",
      version="2.0.3",
      description="Python SNMP Toolkit",
      author="Ilya Etingof",
      author_email="ilya@glas.net ",
      url="http://sourceforge.net/projects/pysnmp/",
      packages=['pysnmp'],
      license="BSD"
      )