We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4ecc981 + 4272a93 commit c211a19Copy full SHA for c211a19
setup.py
@@ -1,7 +1,7 @@
1
#!/usr/bin/env python
2
3
try:
4
- from setuptools import setup
+ from setuptools import setup, find_packages
5
except ImportError:
6
raise ImportError("setuptools is required to install wifite2")
7
@@ -16,16 +16,7 @@
16
author='kimocoder',
17
author_email='christian@aircrack-ng.org',
18
url='https://github.com/kimocoder/wifite2',
19
- packages=[
20
- 'wifite',
21
- 'wifite/attack',
22
- 'wifite/attack/portal',
23
- 'wifite/model',
24
- 'wifite/native',
25
- 'wifite/tools',
26
- 'wifite/ui',
27
- 'wifite/util',
28
- ],
+ packages=find_packages(exclude=['tests', 'tests.*']),
29
package_data={
30
'': ['wordlist-probable.txt']
31
},
0 commit comments