mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-04-02 19:58:54 +00:00
12 lines
231 B
Python
12 lines
231 B
Python
"""Sets global version values"""
|
|
|
|
import platform
|
|
|
|
__version__ = "4.3.0"
|
|
|
|
USER_AGENT = "Mozilla/5.0 ((0 {1})) parsedmarc/{2}".format(
|
|
platform.system(),
|
|
platform.release(),
|
|
__version__
|
|
)
|