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-19 17:03:40 -08:00
|
|
|
zip_safe=False,
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Environment :: Console',
|
|
|
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.2',
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Topic :: Internet :: Proxy Servers',
|
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
2013-12-19 17:08:13 -08:00
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
2013-12-19 17:03:40 -08:00
|
|
|
'Topic :: System :: Archiving',
|
|
|
|
])
|
2013-11-15 22:35:32 -08:00
|
|
|
|