diff --git a/pywb/__init__.py b/pywb/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/setup.py b/setup.py new file mode 100755 index 00000000..ed42ceff --- /dev/null +++ b/setup.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python +# vim: set sw=4 et: + +import setuptools + +setuptools.setup(name='pywb', + version='1.0', + url='https://github.com/ikreymer/pywb', + author='Ilya Kreymer', + author_email='ilya@archive.org', + long_description=open('README.md').read(), + license='GPL', + packages=['pywb'], + install_requires=['rfc3987'], + # test_suite='?', # not sure how to run doctests here + zip_safe=False) +