mirror of
https://github.com/rpp0/scapy-fakeap
synced 2026-06-08 17:13:09 +00:00
14 lines
293 B
Python
14 lines
293 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='scapy-fakeap',
|
|
version='0.1',
|
|
packages=find_packages(),
|
|
url='',
|
|
license='GPLv2',
|
|
author='rpp0',
|
|
author_email='red@nostack.net',
|
|
requires=['scapy'],
|
|
description='Fake AP implementation using Scapy'
|
|
)
|