mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
First release
This commit is contained in:
parent
56afd3fcd2
commit
a2e2530b32
5
setup.py
5
setup.py
@ -1,5 +1,8 @@
|
||||
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',
|
||||
@ -8,6 +11,8 @@ setup(
|
||||
author_email='ndouba@gmail.com',
|
||||
description='Micro Interceptor Proxy - a simple MITM HTTP/S proxy',
|
||||
license='GPL',
|
||||
url='https://github.com/allfro/pymiproxy/',
|
||||
long_description=read('README.md'),
|
||||
packages=find_packages('src'),
|
||||
package_dir={ '' : 'src' },
|
||||
install_requires = [
|
||||
|
Loading…
x
Reference in New Issue
Block a user