From 1bb26a718e13cf433afe3c3fa8f2f75af7dae828 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Mon, 5 Feb 2018 22:26:58 -0500 Subject: [PATCH] 1.0.1 - Fix packaging flaw --- CHANGELOG.md | 4 ++++ parsedmarc.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d8fe4a..99f9f4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +1.0.1 +----- +- Fix packaging flaw + 1.0.0 ----- - Initial release diff --git a/parsedmarc.py b/parsedmarc.py index c2f78b4..824018e 100644 --- a/parsedmarc.py +++ b/parsedmarc.py @@ -30,7 +30,7 @@ from requests import get import geoip2.database import geoip2.errors -__version__ = "1.0.0" +__version__ = "1.0.1" logger = logging.getLogger(__name__) logger.setLevel(logging.WARNING) diff --git a/setup.py b/setup.py index a60f003..40e3240 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ setup( # Alternatively, if you want to distribute just a my_module.py, uncomment # this: - py_modules=["checkdmarc"], + py_modules=["parsedmarc"], # List run-time dependencies here. These will be installed by pip when # your project is installed. For an analysis of "install_requires" vs pip's