2013-11-15 22:35:32 -08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# vim: set sw=4 et:
|
|
|
|
|
|
|
|
import setuptools
|
|
|
|
|
|
|
|
setuptools.setup(name='warcprox',
|
2013-12-19 16:48:28 -08:00
|
|
|
version='1.1',
|
2013-11-15 22:35:32 -08:00
|
|
|
description='WARC writing MITM HTTP/S proxy',
|
|
|
|
url='https://github.com/internetarchive/warcprox',
|
|
|
|
author='Noah Levitt',
|
|
|
|
author_email='nlevitt@archive.org',
|
2013-11-28 01:28:59 -08:00
|
|
|
long_description=open('README.rst').read(),
|
2013-11-15 22:35:32 -08:00
|
|
|
license='GPL',
|
|
|
|
packages=['warcprox'],
|
2013-12-09 17:45:00 -08:00
|
|
|
install_requires=['pyopenssl', 'warctools>=4.8.3'], # gdbm not in pip :(
|
2013-12-13 06:02:14 +00:00
|
|
|
dependency_links=['git+https://github.com/internetarchive/warctools.git#egg=warctools-4.8.3'],
|
2013-12-06 15:22:29 -08:00
|
|
|
tests_require=['requests>=2.0.1'], # >=2.0.1 for https://github.com/kennethreitz/requests/pull/1636
|
2013-12-06 16:50:02 -08:00
|
|
|
test_suite='warcprox.tests',
|
2013-11-15 22:35:32 -08:00
|
|
|
scripts=['bin/dump-anydbm', 'bin/warcprox'],
|
2013-12-04 17:50:55 -08:00
|
|
|
zip_safe=False)
|
2013-11-15 22:35:32 -08:00
|
|
|
|