2013-12-09 11:58:50 -08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# vim: set sw=4 et:
|
|
|
|
|
2014-02-01 00:15:31 -08:00
|
|
|
import setuptools
|
2014-02-09 12:06:35 -08:00
|
|
|
import glob
|
2013-12-09 11:58:50 -08:00
|
|
|
|
|
|
|
setuptools.setup(name='pywb',
|
2014-01-24 00:54:48 -08:00
|
|
|
version='0.1',
|
2013-12-09 11:58:50 -08:00
|
|
|
url='https://github.com/ikreymer/pywb',
|
|
|
|
author='Ilya Kreymer',
|
|
|
|
author_email='ilya@archive.org',
|
|
|
|
long_description=open('README.md').read(),
|
|
|
|
license='GPL',
|
2014-02-12 13:16:07 -08:00
|
|
|
packages=['pywb', 'pywb.binsearch', 'pywb.cdxserver'],
|
|
|
|
provides=['pywb', 'pywb.binsearch', 'pywb.cdxserver'],
|
2014-02-07 19:32:58 -08:00
|
|
|
package_data={'pywb': ['ui/*', 'static/*']},
|
2014-02-09 12:06:35 -08:00
|
|
|
data_files = [('sample_archive/cdx/', glob.glob('sample_archive/cdx/*')),
|
|
|
|
('sample_archive/warcs/', glob.glob('sample_archive/warcs/*'))],
|
2014-01-31 19:41:44 -08:00
|
|
|
install_requires=['uwsgi', 'rfc3987', 'chardet', 'redis', 'jinja2', 'surt', 'pyyaml', 'WebTest'],
|
2014-02-01 00:15:31 -08:00
|
|
|
tests_require=['WebTest', 'pytest'],
|
2013-12-09 11:58:50 -08:00
|
|
|
zip_safe=False)
|
|
|
|
|