1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#!/usr/bin/python
# $Id: setup.py,v 1.15 2006/05/23 21:19:24 gera Exp $
import glob
import os
from distutils.core import setup
PACKAGE_NAME = "Impacket"
setup(name = PACKAGE_NAME,
version = "0.9.6.0",
description = "Network protocols Constructors and Dissectors",
url = "http://oss.coresecurity.com/projects/impacket.html",
author = "CORE Security Technologies",
author_email = "oss@coresecurity.com",
maintainer = "Max Caceres",
maintainer_email = "max@coresecurity.com",
packages = ['impacket', 'impacket.dcerpc'],
scripts = glob.glob(os.path.join('examples', '*.py'))+glob.glob('doc/*'),
data_files = [(os.path.join('share', 'doc', PACKAGE_NAME),
['README', 'LICENSE'])],
)
|