mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-15 08:04:49 +01:00
range request reorg rangecache to support is_range() check, yt-specific logic (experimental) wombat: add date override (experimental) bump tentative version to 0.7.0! yt replays work with native player! (though still issues remain)
111 lines
3.2 KiB
Python
Executable File
111 lines
3.2 KiB
Python
Executable File
#!/usr/bin/env python
|
|
# vim: set sw=4 et:
|
|
|
|
from setuptools import setup, find_packages
|
|
from setuptools.command.test import test as TestCommand
|
|
import glob
|
|
|
|
|
|
# Fix for TypeError: 'NoneType' object is not callable" error
|
|
# when running 'python setup.py test'
|
|
try:
|
|
import multiprocessing
|
|
except ImportError:
|
|
pass
|
|
|
|
|
|
long_description = open('README.rst').read()
|
|
|
|
|
|
class PyTest(TestCommand):
|
|
def finalize_options(self):
|
|
TestCommand.finalize_options(self)
|
|
self.test_suite = True
|
|
|
|
def run_tests(self):
|
|
import pytest
|
|
import sys
|
|
import os
|
|
os.environ.pop('PYWB_CONFIG_FILE', None)
|
|
cmdline = ' --cov-config .coveragerc --cov pywb'
|
|
cmdline += ' -v --doctest-module ./pywb/ tests/'
|
|
errcode = pytest.main(cmdline)
|
|
sys.exit(errcode)
|
|
|
|
setup(
|
|
name='pywb',
|
|
version='0.7.0',
|
|
url='https://github.com/ikreymer/pywb',
|
|
author='Ilya Kreymer',
|
|
author_email='ikreymer@gmail.com',
|
|
description='Python WayBack Machine for web archive replay',
|
|
long_description=long_description,
|
|
license='GPL',
|
|
packages=find_packages(),
|
|
provides=[
|
|
'pywb',
|
|
'pywb.utils',
|
|
'pywb.cdx',
|
|
'pywb.warc',
|
|
'pywb.rewrite',
|
|
'pywb.framework',
|
|
'pywb.perms',
|
|
'pywb.webapp',
|
|
'pywb.apps'
|
|
],
|
|
package_data={
|
|
'pywb': ['ui/*', 'static/*', '*.yaml'],
|
|
},
|
|
data_files=[
|
|
('sample_archive/cdx/', glob.glob('sample_archive/cdx/*')),
|
|
('sample_archive/zipcdx/', glob.glob('sample_archive/zipcdx/*')),
|
|
('sample_archive/warcs/', glob.glob('sample_archive/warcs/*')),
|
|
('sample_archive/text_content/',
|
|
glob.glob('sample_archive/text_content/*')),
|
|
],
|
|
install_requires=[
|
|
'chardet',
|
|
'requests',
|
|
'redis',
|
|
'jinja2',
|
|
'surt',
|
|
'pyyaml',
|
|
'youtube_dl'
|
|
],
|
|
tests_require=[
|
|
'pytest',
|
|
'WebTest',
|
|
'pytest-cov',
|
|
'fakeredis',
|
|
'mock',
|
|
],
|
|
cmdclass={'test': PyTest},
|
|
test_suite='',
|
|
entry_points="""
|
|
[console_scripts]
|
|
wayback = pywb.apps.wayback:main
|
|
cdx-server = pywb.apps.cdx_server:main
|
|
cdx-indexer = pywb.warc.cdxindexer:main
|
|
live-rewrite-server = pywb.apps.live_rewrite_server:main
|
|
proxy-cert-auth = pywb.framework.certauth:main
|
|
""",
|
|
zip_safe=False,
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Environment :: Web Environment',
|
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Topic :: Internet :: Proxy Servers',
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
'Topic :: Internet :: WWW/HTTP :: WSGI',
|
|
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
|
|
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
|
|
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server',
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
'Topic :: System :: Archiving',
|
|
'Topic :: System :: Archiving :: Backup',
|
|
'Topic :: Utilities',
|
|
])
|