1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-22 03:21:42 +01:00
pywb/pywb/__init__.py
Ilya Kreymer 0fb1fa68a8
Versioning: Add script to set up MAJ.MIN.DATE version (#445)
* versioning: new MAJ.MIN.DATE versioning
move version to version.py for easier updates
add update-version.sh for autoupdating version in version.py, pushing new tag with current version
2019-02-25 11:46:37 -08:00

13 lines
351 B
Python

from pywb.version import __version__
DEFAULT_CONFIG = 'pywb/default_config.yaml'
DEFAULT_RULES_FILE = 'pkg://pywb/rules.yaml'
def get_test_dir():
import os
return os.path.join(os.path.dirname(os.path.realpath(__file__)),
'..',
'sample_archive') + os.path.sep