1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00
pywb/setup.py
Ilya Kreymer 44ef14b022 add first integration tests with WebTest!
covers home page, search page, replay, calendar, redirect + replay, cdx
2014-01-31 19:41:44 -08:00

18 lines
532 B
Python
Executable File

#!/usr/bin/env python
# vim: set sw=4 et:
import setuptools
setuptools.setup(name='pywb',
version='0.1',
url='https://github.com/ikreymer/pywb',
author='Ilya Kreymer',
author_email='ilya@archive.org',
long_description=open('README.md').read(),
license='GPL',
packages=['pywb'],
install_requires=['uwsgi', 'rfc3987', 'chardet', 'redis', 'jinja2', 'surt', 'pyyaml', 'WebTest'],
# test_suite='?', # not sure how to run doctests here
zip_safe=False)