File: setup.py

package info (click to toggle)
python-dpkt 1.6%2Bsvn54-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 448 kB
  • ctags: 1,950
  • sloc: python: 5,136; makefile: 71
file content (11 lines) | stat: -rwxr-xr-x 241 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python

from distutils.core import setup
import dpkt

setup(name='dpkt',
      version=dpkt.__version__,
      author=dpkt.__author__,
      url=dpkt.__url__,
      description='dumb packet module',
      packages=[ 'dpkt' ])