Move version to its own package

This commit is contained in:
Sean Whalen
2022-05-02 14:38:17 -04:00
parent fe5559e44e
commit 996deb042c
3 changed files with 3 additions and 5 deletions
+1 -4
View File
@@ -2,8 +2,6 @@
"""A Python package for parsing DMARC reports"""
__version__ = "8.0.3"
import binascii
import email
import email.utils
@@ -30,14 +28,13 @@ from expiringdict import ExpiringDict
from lxml import etree
from mailsuite.smtp import send_email
from parsedmarc.meta import __version__
from parsedmarc.mail import MailboxConnection
from parsedmarc.utils import get_base_domain, get_ip_address_info
from parsedmarc.utils import is_outlook_msg, convert_outlook_msg
from parsedmarc.utils import parse_email
from parsedmarc.utils import timestamp_to_human, human_timestamp_to_datetime
formatter = logging.Formatter(
fmt='%(levelname)8s:%(filename)s:%(lineno)d:%(message)s',
datefmt='%Y-%m-%d:%H:%M:%S')
+1
View File
@@ -0,0 +1 @@
__version__ = "8.0.3"
+1 -1
View File
@@ -14,7 +14,7 @@ from setuptools import setup
from codecs import open
from os import path
from parsedmarc import __version__
from parsedmarc.meta import __version__
description = "A Python package and CLI for parsing aggregate and " \
"forensic DMARC reports"