Fix setup.py issue reported by Andurin

This commit is contained in:
rpp
2015-02-05 19:27:16 +01:00
parent 17e9bddbc6
commit 0bcbd93b3c
3 changed files with 5 additions and 2 deletions
+1
View File
@@ -2,6 +2,7 @@
scapy_fakeap.egg-info/
TODO
pull_trees.sh
push_trees.sh
examples/dev.py
*.pyc
*.conf
+2
View File
@@ -18,10 +18,12 @@ DOT11_TYPE_MANAGEMENT = 0
DOT11_TYPE_CONTROL = 1
DOT11_TYPE_DATA = 2
DOT11_SUBTYPE_DATA = 0x00
DOT11_SUBTYPE_PROBE_REQ = 0x04
DOT11_SUBTYPE_AUTH_REQ = 0x0B
DOT11_SUBTYPE_ASSOC_REQ = 0x00
DOT11_SUBTYPE_REASSOC_REQ = 0x02
DOT11_SUBTYPE_QOS_DATA = 0x28
IFNAMSIZ = 16
+2 -2
View File
@@ -1,9 +1,9 @@
from setuptools import setup
from setuptools import setup, find_packages
setup(
name='scapy-fakeap',
version='0.1',
packages=['fakeap'],
packages=find_packages(),
url='',
license='GPLv2',
author='rpp0',