gdbm not in pip, can't be listed as a requirement

This commit is contained in:
Noah Levitt 2013-12-09 17:45:00 -08:00
parent 0d617a927c
commit 313bc62bf1

View File

@ -12,7 +12,7 @@ setuptools.setup(name='warcprox',
long_description=open('README.rst').read(),
license='GPL',
packages=['warcprox'],
install_requires=['gdbm', 'pyopenssl', 'warctools>=4.8.3'],
install_requires=['pyopenssl', 'warctools>=4.8.3'], # gdbm not in pip :(
dependency_links=['git+https://github.com/nlevitt/warctools.git@python3#egg=warctools-4.8.3'],
tests_require=['requests>=2.0.1'], # >=2.0.1 for https://github.com/kennethreitz/requests/pull/1636
test_suite='warcprox.tests',