mirror of
https://github.com/sploutchy/impacket
synced 2026-06-08 17:32:01 +00:00
a951dea81b
replaced @ in changelog with _at_, as some people are archiving packages on websites were spammers can crawl them
24 lines
721 B
Python
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/*'))],
|
|
)
|