2012-06-08 06:59:30 -06:00
|
|
|
from distutils.core import setup
|
2012-06-03 13:58:10 -06:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name="netarch",
|
2012-08-09 19:24:56 -06:00
|
|
|
version="1.0",
|
2012-06-03 13:58:10 -06:00
|
|
|
author="Neale Pickett",
|
|
|
|
author_email="neale@lanl.gov",
|
|
|
|
description=("Classes to aid in the dissection of network protocols and cryptanalysis"),
|
2012-08-09 19:24:56 -06:00
|
|
|
long_description=open("README").read(),
|
|
|
|
license=open("COPYING").read(),
|
2012-06-03 13:58:10 -06:00
|
|
|
keywords="network protocol dissection cryptanalysis",
|
|
|
|
url="http://woozle.org/~neale/projects/netarch",
|
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Intended Audience :: Information Technology",
|
|
|
|
"License :: Other/Proprietary License",
|
|
|
|
"Programming Language :: Python :: 2 :: Only",
|
|
|
|
"Topic :: System :: Networking"
|
2012-06-08 06:59:30 -06:00
|
|
|
],
|
|
|
|
packages=['netarch'],
|
2012-06-08 07:02:21 -06:00
|
|
|
data_files=[
|
2012-08-09 21:27:56 -06:00
|
|
|
('share/doc/netarch', ['COPYING', 'CREDITS', 'README']),
|
|
|
|
('share/doc/netarch/examples', ['extra/start-here.py']),
|
|
|
|
('share/man/man3', ['doc/netarch.3']),
|
2012-06-08 07:02:21 -06:00
|
|
|
]
|
2012-06-03 13:58:10 -06:00
|
|
|
)
|