PKlJ pep440/__init__.py """ A simple package with utils to check whether versions number match PEP 440. https://www.python.org/dev/peps/pep-0440/ Example >>> from pep440 import is_canonical >>> is_canonical('4.1.0') True >>> is_canonical('4.2.1.beta2') # 4.2.1b2 is correct False """ __version__ = '0.1.0' from argparse import ArgumentParser import sys from .core import (posint, tpl_string_re, string_re, loose440re, pep440re, is_canonical, assert_valid) def main(): parser = ArgumentParser() parser.add_argument('version', nargs='?') parser.add_argument('--verbose', nargs='?') args = parser.parse_args() if args.version: c=is_canonical(args.version) if c: print('Version is canonical according to Pep 440') else: print('Version is not canonical according to Pep 440') sys.exit(not c) parser.print_help() sys.exit(-1) PKprG3T pep440/__main__.pyfrom pep440 import main main() PKfmJӷ pep440/core.py# This fiel is part of the python package pep 440 # Feel free to vendor just this file, if should contain all you need. # # Vendored version of commit # ############################################################################### # The MIT License (MIT) # # Copyright (c) 2015-present Matthias Bussonnier # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. ############################################################################### import re posint = '(0|[1-9]\d*)' # 0!0.0.0rc0.post0.dev0 tpl_string_re = ('^' # Start '([1-9]\d*!)?' # [N!] '{posint}' # N '(\.{posint})*' # (.N)* '((a|b|rc){posint})?' # [{a|b|rc}N] '(\.post{posint})?' # [.postN] '(\.dev{postdev})?' # [.devN] '$') string_re = tpl_string_re.format(posint=posint, postdev=posint) loose440re = re.compile(tpl_string_re.format(posint=posint, postdev=(posint+'?'))) pep440re = re.compile(string_re) def is_canonical(version, loosedev=False): """ Return whether or not the version string is canonical according to Pep 440 """ if loosedev: return loose440re.match(version) is not None return pep440re.match(version) is not None def assert_valid(version): if not is_canonical(version): raise AssertionError("Version string {!r} does not match PEP 440 specification".format(version)) PK4@GX >>pep440-0.1.0.dist-info/LICENSEThe MIT License (MIT) Copyright (c) 2015 Matthias Bussonnier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. PK!H|&Ubpep440-0.1.0.dist-info/WHEEL HM K-*ϳR03rOK-J,/RH,Q034 /, (-JLR()*M ILR(4KM̫#DPK!Hbgpep440-0.1.0.dist-info/METADATAMo0 vHs9 [hbKjvLiZGI["GP~hłmQKv2/9{J;rX+:AёxCG#S:: 蠺 (whfS]lSX¨#xRkcg1tq`DߢFkInfPꋠF6+ {Dcam3{jr:ˌ/PyȲT>Y 0-g>f,Wϻc1!j/Ψ-!]͸j{,cO"w}oL>¤wa8y}ug ԲmӸ Y i!ɟ8)h%CyDXhJݲX+ĞA٣oI帴'JPK!HghNpep440-0.1.0.dist-info/RECORDu;0޳%![ fQFDTDi2B*~O2[x7a R^a,B,ǎN4g0D]ēBa8:ʈW$އxaHCŢomJvҺ  3RMrRZ ۣM^(j '$P&I:ף$-$o4+-=؊-0:''6Rk7۰.o|`_;uܫ w|uzzLqꐝ13vFВyeQ5*xb)U!0PKlJ pep440/__init__.pyPKprG3T pep440/__main__.pyPKfmJӷ pep440/core.pyPK4@GX >> pep440-0.1.0.dist-info/LICENSEPK!H|&UbOpep440-0.1.0.dist-info/WHEELPK!Hbgpep440-0.1.0.dist-info/METADATAPK!HghNpep440-0.1.0.dist-info/RECORDPKK