Added dependencies

This commit is contained in:
Roland Hedberg
2011-04-06 09:26:34 +02:00
parent 5f11d54fc4
commit 5f5e8469c0

View File

@@ -18,7 +18,7 @@
# #
from distutils.core import Command from distutils.core import Command
from setuptools import setup, find_packages from setuptools import setup
class PyTest(Command): class PyTest(Command):
@@ -60,6 +60,7 @@ setup(
# core dependencies # core dependencies
'decorator', 'decorator',
'httplib2', 'httplib2',
'importlib',
# for the tests: # for the tests:
'pyasn1', 'pyasn1',
'python-memcached', 'python-memcached',
@@ -69,6 +70,8 @@ setup(
'paste', 'paste',
'zope.interface', 'zope.interface',
'repoze.who == 1.0.18', 'repoze.who == 1.0.18',
# extras
'pymongo'
], ],
zip_safe=False, zip_safe=False,