Skip to content

Commit aaa4a5d

Browse files
committed
Merge pull request #173 from joestump/remove-tests-from-system
Move away from find_packages() to explicitly declaring the package.
2 parents e4032cd + f5a23c8 commit aaa4a5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
from setuptools import setup, find_packages
2+
from setuptools import setup
33
import os, re
44

55
PKG='oauth2'
@@ -31,7 +31,7 @@
3131
author="Joe Stump",
3232
author_email="[email protected]",
3333
url="http://github.com/simplegeo/python-oauth2",
34-
packages = find_packages(),
34+
packages = ['oauth2'],
3535
install_requires = ['httplib2'],
3636
license = "MIT License",
3737
keywords="oauth",

0 commit comments

Comments
 (0)