diff --git a/setup.py b/setup.py index e75c7ad..1b56e41 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ PACKAGE_DESCRIPTION_SHORT = """ Utility for standarized usage of HTTP requests extension libraries in a modular fashion across different libraries.""".strip() def parse_version_file(text: str) -> str: - text = re.sub('^#.*$', '', text) + text = re.sub('^#.*', '', text, flags=re.MULTILINE) match = re.match(r'^\s*__version__\s*=\s*(["\'])([\d\.]+)\1$', text) if match is None: msg = 'Malformed _version.py file!'