1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00
pywb/setup.py
Kenji Nagahashi 79eb3be44f rewrite wsgi_cdxserver with werkzeug
use pkg_resources instead of pkgutil because pkgutil breaks with auto-reload.
add --port command line option.
2014-02-20 09:58:08 +00:00

44 lines
1.0 KiB
Python
Executable File

#!/usr/bin/env python
# vim: set sw=4 et:
from setuptools import setup, find_packages
import glob
setup(
name='pywb',
version='0.2',
url='https://github.com/ikreymer/pywb',
author='Ilya Kreymer',
author_email='ilya@archive.org',
long_description=open('README.md').read(),
license='GPL',
packages=find_packages(),
provides=[
'pywb','pywb.utils','pywb.cdx','pywb.warc','pywb.rewrite'
],
package_data={
'pywb': ['ui/*', 'static/*'],
'pywb.cdx': ['*.yaml']
},
data_files = [
('sample_archive/cdx/', glob.glob('sample_archive/cdx/*')),
('sample_archive/warcs/', glob.glob('sample_archive/warcs/*'))
],
install_requires=[
'uwsgi',
'rfc3987',
'chardet',
'redis',
'jinja2',
'surt',
'pyyaml',
'WebTest',
'pytest',
'werkzeug>=0.9.4',
'setuptools==0.9.7',
],
# tests_require=['WebTest', 'pytest'],
zip_safe=False
)