File: setup.py

package info (click to toggle)
dhcpig 1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 120 kB
  • sloc: python: 551; sh: 8; makefile: 7
file content (20 lines) | stat: -rw-r--r-- 376 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/python

# setup.py Authors:
#   Philippe Thierry <phil@reseau-libre.net>

import os
import os.path

from distutils.core import setup

setup(
    name="dhcpig",
    author="Kevin Amorin",
    description="DHCP exhaustion script using scapy network library",
    license="GPL2+",
    url="https://github.com/kamorin/DHCPig",
    scripts=[
        ("pig.py")
    ],
)