From 89481f162e8c3de589fb661ee5ae6cc90a6f88b9 Mon Sep 17 00:00:00 2001 From: Noah Levitt Date: Mon, 9 Dec 2013 11:58:50 -0800 Subject: [PATCH] setuptools config --- pywb/__init__.py | 0 setup.py | 17 +++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 pywb/__init__.py create mode 100755 setup.py 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) +