Skip to content

Commit

Permalink
Remove find_packages from setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ianb committed Nov 5, 2008
1 parent 1929af6 commit d014751
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
@@ -1,4 +1,4 @@
from setuptools import setup, find_packages
from setuptools import setup
import sys, os

version = '0.9.5'
Expand Down Expand Up @@ -27,7 +27,7 @@
author_email='ianb@colorstudy.com',
url='http://pythonpaste.org/webob/',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
packages=['webob', 'webob.util'],
include_package_data=True,
zip_safe=True,
test_suite='nose.collector',
Expand Down

0 comments on commit d014751

Please sign in to comment.