Files
sploutchy-impacket/setup.py
T
max a951dea81b fixed setup.py where doc files were installed on usr/bin
replaced @ in changelog with _at_, as some people are archiving packages on websites were spammers can crawl them
2006-09-25 15:33:59 +00:00

24 lines
721 B
Python

#!/usr/bin/python
# $Id$
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')),
data_files = [(os.path.join('share', 'doc', PACKAGE_NAME),
['README', 'LICENSE']+glob.glob('doc/*'))],
)