forked from jldupont/jldcmds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·51 lines (40 loc) · 1.29 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
"""
Jean-Lou Dupont's Command Line Tools
Created on 2015-03-09
@author: jldupont
"""
__author__ ="Jean-Lou Dupont"
__version__ ="0.4"
DESC="""
Overview
--------
Collection of command line tools
* jldcmd-jwrite: read JSON objects from stdin and write to target path
* jldcmd-wsniff: sniff beacon, probe request & response from a 802.11 interface, outputs JSON to stdout
* jldcmd-wscan: scans through 802.11 channels using a pattern
"""
from distutils.core import setup
from setuptools import find_packages
setup(name= 'jldcmds',
version= __version__,
description= 'Collection of command line tools',
author= __author__,
author_email= '[email protected]',
url= 'https://github.com/jldupont/jldcmds',
package_dir= {'': "src",},
packages= find_packages("src"),
scripts= ['src/scripts/jldcmd-jwrite'
,'src/scripts/jldcmd-wsniff'
,'src/scripts/jldcmd-wscan'
],
zip_safe=False
,long_description=DESC
,install_requires=[ "argparse"
,'scapy'
]
)
#############################################
f=open("latest", "w")
f.write(str(__version__)+"\n")
f.close()