1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 16:14:48 +01:00
pywb/setup.py
Ilya Kreymer 107ba9aabc add ProxyLiveIndexSource for proxying upstream conn directly w/o a second index query
liveloader: if 'memento_url' key is set, then memento-datetime header must be present or its an error response
liveindexsource: add option to specify custom live path (eg. prefix for cacheing)
fix test cases changed due to ia (todo: mock up all external data!)
2016-03-08 10:27:13 -08:00

63 lines
1.7 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
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
# should work with setuptools <18, 18 18.5
self.test_suite = ' '
def run_tests(self):
import pytest
import sys
import os
cmdline = ' --cov webagg -vv test/'
errcode = pytest.main(cmdline)
sys.exit(errcode)
setup(
name='webagg',
version='1.0',
author='Ilya Kreymer',
author_email='ikreymer@gmail.com',
license='Apache 2.0',
packages=find_packages(),
url='https://github.com/webrecorder/webagg',
description='Resource Aggregator',
long_description=open('README.rst').read(),
provides=[
'webagg',
],
install_requires=[
'pywb==1.0b',
],
dependency_links=[
'git+https://github.com/ikreymer/pywb.git@py3#egg=pywb-1.0b-py3',
],
zip_safe=True,
entry_points="""
[console_scripts]
""",
cmdclass={'test': PyTest},
test_suite='',
tests_require=[
'pytest',
'pytest-cov',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
]
)