From c7847cf2882ec6aa0fe23a56e3bd4a7822ab0897 Mon Sep 17 00:00:00 2001 From: pi-rho Date: Fri, 8 Jun 2012 07:59:30 -0500 Subject: [PATCH] switch to distutils as it is part of core python --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 5302067..f03a9f5 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup, find_packages +from distutils.core import setup setup( name="netarch", @@ -10,12 +10,12 @@ setup( 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" - ] + ], + packages=['netarch'], )