- Fixed incorrect dir name in setup.py [ticket:129]
diff --git a/CHANGES b/CHANGES index 7f7d0a9..02c1539 100644 --- a/CHANGES +++ b/CHANGES
@@ -1,3 +1,7 @@ +0.3.1 +- Fixed incorrect dir name in setup.py + [ticket:129] + 0.3 - Python 2.3 support is dropped. [ticket:123]
diff --git a/setup.py b/setup.py index 1da839d..b54715d 100644 --- a/setup.py +++ b/setup.py
@@ -44,7 +44,7 @@ author_email='mike@zzzcomputing.com', url='http://www.makotemplates.org/', license='MIT', - packages=find_packages('.', exclude=['ez_setup', 'examples', 'tests']), + packages=find_packages('.', exclude=['examples', 'test']), scripts=['scripts/mako-render'], tests_require = ['nose >= 0.11'], test_suite = "nose.collector",