mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-22 03:21:42 +01:00
* 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
13 lines
351 B
Python
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
|