1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

fix typo in setup.py

This commit is contained in:
Ilya Kreymer 2014-02-01 00:15:31 -08:00
parent 2f5ffb3a88
commit f00ac826cf

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python
# vim: set sw=4 et:
import setuptools
import setuptools
setuptools.setup(name='pywb',
version='0.1',
@ -12,6 +12,6 @@ setuptools.setup(name='pywb',
license='GPL',
packages=['pywb'],
install_requires=['uwsgi', 'rfc3987', 'chardet', 'redis', 'jinja2', 'surt', 'pyyaml', 'WebTest'],
tests_require['WebTest', 'pytest'],
tests_require=['WebTest', 'pytest'],
zip_safe=False)