diff options
author | Daniele Tricoli <eriol@mornie.org> | 2012-05-05 01:29:47 +0200 |
---|---|---|
committer | Daniele Tricoli <eriol@mornie.org> | 2012-05-05 01:29:47 +0200 |
commit | 5eacf802ed21e12fdf983223fb9d1546a366f8e6 (patch) | |
tree | 3ced3feb6724ae481acad16c6ef3af7009815707 /setup.py | |
parent | 029708cea64c6b2a19d28de49b0e0f4ba6cf59ac (diff) | |
download | oauthlib-5eacf802ed21e12fdf983223fb9d1546a366f8e6.tar.gz |
Provided tests as a package so tests/__init__.py and
test/test_common.py won't be missing. Right now tests shipped in
sdist are broken because of the missing files.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ setup( author_email='idan@gazit.me', url='https://github.com/idangazit/oauthlib', license=fread('LICENSE'), - packages=find_packages(exclude=('tests', 'docs')), + packages=find_packages(exclude=('docs')), test_suite='nose.collector', tests_require=tests_require, extras_require={'test': tests_require}, |