mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
22 lines
629 B
Python
22 lines
629 B
Python
from setuptools import setup, find_packages
|
|
from os import path
|
|
|
|
def read(fname):
|
|
return open(path.join(path.dirname(__file__), fname)).read()
|
|
|
|
setup(
|
|
name='pymiproxy',
|
|
author='Nadeem Douba',
|
|
version='1.0',
|
|
author_email='ndouba@gmail.com',
|
|
description='Micro Interceptor Proxy - a simple MITM HTTP/S proxy',
|
|
license='GPL',
|
|
url='https://github.com/allfro/pymiproxy/',
|
|
download_url='https://github.com/allfro/pymiproxy/tarball/master',
|
|
long_description=read('README.md'),
|
|
packages=find_packages('src'),
|
|
package_dir={ '' : 'src' },
|
|
install_requires = [
|
|
'pyopenssl'
|
|
]
|
|
) |