Merge pull request #308 from nathanthorpe/fix_package

Fix ModuleNotFoundError: add parsedmarc.mail to setup packages
This commit is contained in:
Sean Whalen
2022-04-24 12:44:26 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ Features
* Parses draft and 1.0 standard aggregate/rua reports
* Parses forensic/failure/ruf reports
* Can parse reports from an inbox over IMAP or Microsoft Graph
* Can parse reports from an inbox over IMAP, Microsoft Graph, or Gmail API
* Transparently handles gzip or zip compressed reports
* Consistent data structures
* Simple JSON and/or CSV output

View File

@@ -78,7 +78,7 @@ setup(
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=["parsedmarc", "parsedmarc.resources"],
packages=["parsedmarc", "parsedmarc.resources", "parsedmarc.mail"],
package_data={
"parsedmarc.resources": ["*.mmdb"]
},