First release

This commit is contained in:
allfro 2012-07-20 08:31:12 -04:00
parent 56afd3fcd2
commit a2e2530b32

View File

@ -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 = [