/opt/alt/python37/lib/python3.7/site-packages/svgwrite
NameSizeModeActions
data/-0755rm
extensions/-0755rm
__pycache__/-0755rm
animate.py64580644editdlrm
base.py81980644editdlrm
container.py103940644editdlrm
drawing.py51750644editdlrm
elementfactory.py21990644editdlrm
etree.py12870644editdlrm
filters.py77070644editdlrm
gradients.py46060644editdlrm
image.py24090644editdlrm
masking.py17840644editdlrm
mixins.py104290644editdlrm
params.py18100644editdlrm
path.py28170644editdlrm
pattern.py19500644editdlrm
shapes.py57490644editdlrm
solidcolor.py16710644editdlrm
text.py79240644editdlrm
utils.py77610644editdlrm
validator2.py60130644editdlrm
version.py10880644editdlrm
__init__.py23910644editdlrm
Edit: /opt/alt/python37/lib/python3.7/site-packages/svgwrite/version.py (1088B)
# 2018-11-29: future consistent version numbers # --------------------------------------------- # # version scheme for version: (major, minor, micro, release_level) # # major: # 0 .. not all planned features done # 1 .. all features available # 2 .. if significant API change (2, 3, ...) # # minor: # changes with new features or minor API changes # # micro: # changes with bug fixes, maybe also minor changes # # release_state: # a .. alpha: adding new features - non public development state # b .. beta: testing new features - public development state # rc .. release candidate: testing release - public testing # release: public release # examples # # major pre release alpha 2: VERSION = "0.9a2"; version = (0, 9, 0, 'a2') # major release candidate 0: VERSION = "0.9rc0"; version = (0, 9, 0, 'rc0') # major release: VERSION = "0.9"; version = (0, 9, 0, 'release') # 1. bug fix release beta0: VERSION = "0.9.1b0"; version = (0, 9, 1, 'b0') # 2. bug fix release: VERSION = "0.9.2"; version = (0, 9, 2, 'release') version = (1, 3, 0, 'release') __version__ = "1.3.0"