mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
35 lines
1.4 KiB
Python
Executable File
35 lines
1.4 KiB
Python
Executable File
#!/usr/bin/env python
|
|
# vim: set sw=4 et:
|
|
|
|
import setuptools
|
|
|
|
setuptools.setup(name='warcprox',
|
|
version='1.1',
|
|
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.rst').read(),
|
|
license='GPL',
|
|
packages=['warcprox'],
|
|
install_requires=['pyopenssl', 'warctools>=4.8.3'], # gdbm not in pip :(
|
|
dependency_links=['git+https://github.com/internetarchive/warctools.git#egg=warctools-4.8.3'],
|
|
tests_require=['requests>=2.0.1'], # >=2.0.1 for https://github.com/kennethreitz/requests/pull/1636
|
|
test_suite='warcprox.tests',
|
|
scripts=['bin/dump-anydbm', 'bin/warcprox'],
|
|
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',
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
'Topic :: System :: Archiving',
|
|
])
|
|
|