From cfbf29a3bac272af49ec55ac7a561ad8421e241d Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 18 Feb 2012 16:59:54 -0500 Subject: [PATCH] Add new modules and use apachelog.__version__ in setup.py. --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c15212c..6b0c5d0 100755 --- a/setup.py +++ b/setup.py @@ -6,10 +6,13 @@ from distutils.core import setup from distutils.dist import DistributionMetadata if not hasattr(DistributionMetadata,'classifiers'): DistributionMetadata.classifiers = None + +from apachelog import __version__ + setup( name = 'apachelog', - version = '1.1', + version = __version__, description = 'Access log parser in python, ported from '\ 'Peter Hickman\'s Apache::LogRegex Perl moduleUniversal.', long_description = """\ @@ -47,5 +50,5 @@ in the log format. "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing", ], - py_modules = ['apachelog',] + py_modules = ['apachelog', 'apachelog.processor', 'apachelog.test'] ) -- 2.26.2