projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
447ffec
)
Fix find_packages exclude list.
author
Joshua Roesslein
<jroesslein@gmail.com>
Sat, 17 Aug 2013 07:11:35 +0000
(
00:11
-0700)
committer
Joshua Roesslein
<jroesslein@gmail.com>
Sat, 17 Aug 2013 07:11:35 +0000
(
00:11
-0700)
- Need to pass a list in order for this to work.
setup.py
patch
|
blob
|
blame
|
history
diff --git
a/setup.py
b/setup.py
index c5719051e3bba42b8c06b1116ef404cac8193332..0e4b56f547480d4431170e436eed0f5647d284bc 100644
(file)
--- a/
setup.py
+++ b/
setup.py
@@
-10,6
+10,6
@@
setup(name="tweepy",
author="Joshua Roesslein",
author_email="tweepy@googlegroups.com",
url="http://github.com/tweepy/tweepy",
- packages=find_packages(exclude=
'tests'
),
+ packages=find_packages(exclude=
['tests']
),
keywords="twitter library",
zip_safe=True)