Micro Interceptor Proxy - a simple MITM HTTP/S proxy with logging
Project description
from setuptools import setup, find_packages
from os import path
def read(fname):
return open(path.join(path.dirname(__file__), fname)).read()
setup(
name='python-logging-proxy',
include_package_data = True,
author='Alistair Broomhead',
version='1.0.1',
author_email='alistair.broomhead@gmail.com',
description='Micro Interceptor Proxy - a simple MITM HTTP/S proxy with logging',
license='GPL',
url='https://github.com/alistair-broomhead/python-logging-proxy',
download_url='https://github.com/alistair-broomhead/python-logging-proxy/zipball/master',
long_description=read('README.md'),
packages=find_packages('src'),
package_dir={ '' : 'src' },
install_requires = [
'pyopenssl'
]
)
from os import path
def read(fname):
return open(path.join(path.dirname(__file__), fname)).read()
setup(
name='python-logging-proxy',
include_package_data = True,
author='Alistair Broomhead',
version='1.0.1',
author_email='alistair.broomhead@gmail.com',
description='Micro Interceptor Proxy - a simple MITM HTTP/S proxy with logging',
license='GPL',
url='https://github.com/alistair-broomhead/python-logging-proxy',
download_url='https://github.com/alistair-broomhead/python-logging-proxy/zipball/master',
long_description=read('README.md'),
packages=find_packages('src'),
package_dir={ '' : 'src' },
install_requires = [
'pyopenssl'
]
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.