Make README Mardown (README.md) and use for long_description

This commit is contained in:
Scott Kitterman
2019-12-09 17:36:01 -05:00
parent 166291857a
commit 8701e996d3
3 changed files with 49 additions and 26 deletions
+6 -5
View File
@@ -37,14 +37,15 @@ try:
except ImportError: # If PyDNS is not installed, prefer dnspython
kw['install_requires'] = ['dnspython']
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = "dkimpy",
version = version,
description = "DKIM (DomainKeys Identified Mail)",
long_description =
"""dkimpy is a Python library that implements DKIM (DomainKeys
Identified Mail) and ARC (Authenticated Received Chain) email signing and
verification.""",
description = "DKIM (DomainKeys Identified Mail), ARC (Authenticated Receive Chain), and TLSRPT (TLS Report) email signing and verification",
long_description=long_description,
long_description_content_type='text/markdown',
author = "Scott Kitterman",
author_email = "scott@kitterman.com",
url = "https://launchpad.net/dkimpy",