From: W. Trevor King Date: Sat, 18 Feb 2012 21:59:54 +0000 (-0500) Subject: Add new modules and use apachelog.__version__ in setup.py. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=cfbf29a3bac272af49ec55ac7a561ad8421e241d;p=apachelog.git Add new modules and use apachelog.__version__ in setup.py. --- 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'] )