use setuptools to enable system-wide installation

This commit is contained in:
pi-rho 2012-06-03 14:58:10 -05:00
parent 34706656bc
commit d3c7cc2570
7 changed files with 22 additions and 0 deletions

1
README.txt Normal file
View File

@ -0,0 +1 @@
Classes to aid in the dissection of network protocols and cryptanalysis

21
setup.py Normal file
View File

@ -0,0 +1,21 @@
from setuptools import setup, find_packages
setup(
name="netarch",
version="0.0",
author="Neale Pickett",
author_email="neale@lanl.gov",
description=("Classes to aid in the dissection of network protocols and cryptanalysis"),
long_description=open("README.txt").read(),
license=open("COPYING.txt").read(),
keywords="network protocol dissection cryptanalysis",
url="http://woozle.org/~neale/projects/netarch",
packages=find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 2 :: Only",
"Topic :: System :: Networking"
]
)