2013-11-15 22:35:32 -08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# vim: set sw=4 et:
|
|
|
|
|
|
|
|
import setuptools
|
|
|
|
|
|
|
|
setuptools.setup(name='warcprox',
|
|
|
|
version='1.0',
|
|
|
|
description='WARC writing MITM HTTP/S proxy',
|
|
|
|
url='https://github.com/internetarchive/warcprox',
|
|
|
|
author='Noah Levitt',
|
|
|
|
author_email='nlevitt@archive.org',
|
|
|
|
long_description=open('README.md').read(),
|
|
|
|
license='GPL',
|
|
|
|
packages=['warcprox'],
|
2013-11-19 17:12:58 -08:00
|
|
|
install_requires=['pyopenssl', 'warctools'], # gdbm/dbhash?
|
2013-11-15 22:35:32 -08:00
|
|
|
scripts=['bin/dump-anydbm', 'bin/warcprox'],
|
2013-11-19 17:12:58 -08:00
|
|
|
zip_safe=False,
|
|
|
|
test_suite='warcprox.tests')
|
2013-11-15 22:35:32 -08:00
|
|
|
|