2013-12-09 11:58:50 -08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# vim: set sw=4 et:
|
|
|
|
|
|
|
|
import setuptools
|
|
|
|
|
|
|
|
setuptools.setup(name='pywb',
|
2014-01-24 00:54:48 -08:00
|
|
|
version='0.1',
|
2013-12-09 11:58:50 -08:00
|
|
|
url='https://github.com/ikreymer/pywb',
|
|
|
|
author='Ilya Kreymer',
|
|
|
|
author_email='ilya@archive.org',
|
|
|
|
long_description=open('README.md').read(),
|
|
|
|
license='GPL',
|
|
|
|
packages=['pywb'],
|
2014-01-29 00:04:54 -08:00
|
|
|
install_requires=['uwsgi', 'rfc3987', 'chardet', 'redis', 'jinja2', 'surt', 'pyyaml'],
|
2013-12-09 11:58:50 -08:00
|
|
|
# test_suite='?', # not sure how to run doctests here
|
|
|
|
zip_safe=False)
|
|
|
|
|