1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 08:04:49 +01:00
pywb/setup.py
2013-12-09 11:58:50 -08:00

18 lines
464 B
Python
Executable File

#!/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)