-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
28 lines (23 loc) · 865 Bytes
/
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
from setuptools import setup
from glob import glob
setup(
name = "ndprotector",
version = "0.5",
author = "Tony Cheneau",
author_email = "[email protected]",
description = "Yet another userspace implementation of CGA (RFC 3972) and \
SEND (RFC 3971)",
licence = "BSD",
keywords = "cga send",
packages = [ 'NDprotector', 'NDprotector/plugins', 'scapy6send' ],
scripts = [ 'ndprotector.py', 'genCGA.py'],
data_files = [ ('share/doc/ndprotector/examples',
glob('examples/*.conf*') ) ,
('share/doc/ndprotector/doc',
glob('doc/*.*') ),
( 'share/doc/ndprotector',
[ 'TODO.txt',
'INSTALL.txt',
'INTEROP.txt',
'LICENCE.txt'] ) ],
)