1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

Merge pull request #1 from nlevitt/setup.py

setuptools config
This commit is contained in:
ikreymer 2013-12-09 20:26:14 -08:00
commit d546fcc82c
2 changed files with 17 additions and 0 deletions

0
pywb/__init__.py Normal file
View File

17
setup.py Executable file
View File

@ -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)