warcprox/setup.py

23 lines
569 B
Python
Raw Normal View History

2012-07-19 11:08:14 -04:00
from setuptools import setup, find_packages
2012-07-20 08:31:12 -04:00
from os import path
2012-07-19 11:08:14 -04:00
2012-07-20 08:31:12 -04:00
def read(fname):
return open(path.join(path.dirname(__file__), fname)).read()
2012-07-19 11:08:14 -04:00
setup(
2013-10-15 10:54:18 -07:00
name='warcprox',
author='Noah Levitt',
2012-07-19 11:08:14 -04:00
version='1.0',
2013-10-15 10:54:18 -07:00
author_email='nlevitt@archive.org',
description='warcprox - WARC writing MITM HTTP/S proxy',
2012-07-19 11:08:14 -04:00
license='GPL',
2013-10-15 10:54:18 -07:00
url='https://github.com/nlevitt/warcprox',
2012-07-20 08:31:12 -04:00
long_description=read('README.md'),
2012-07-19 11:08:14 -04:00
packages=find_packages('src'),
package_dir={ '' : 'src' },
install_requires = [
2013-10-15 10:54:18 -07:00
'pyopenssl',
'warctools'
2012-07-19 11:08:14 -04:00
]
2012-07-20 22:18:10 -04:00
)