diff --git a/CHANGELOG.md b/CHANGELOG.md index 970e355..86f6e23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## v1.2.3 + +* Included README.md into PyPi package + ## v1.2.2 * Raise an optional exception on a failed insert diff --git a/setup.py b/setup.py index 5b920a4..e5ff6e4 100755 --- a/setup.py +++ b/setup.py @@ -1,10 +1,15 @@ #!/usr/bin/env python -import sys import os -from setuptools.command.install import install +import sys +from pathlib import Path + from setuptools import setup, find_packages +from setuptools.command.install import install + +VERSION = "v1.2.3" -VERSION = "v1.2.2" +this_directory = Path(__file__).parent +long_description = (this_directory / "README.md").read_text() class VerifyVersionCommand(install): @@ -26,6 +31,8 @@ def run(self): version=VERSION, license="GNU Affero General Public License v3.0", description="Singer.io target for loading data", + long_description=long_description, + long_description_content_type='text/markdown', author="ednarb29", url="https://github.com/ednarb29/target-airtable", keywords=["singer.io", "singer-target", "airtable"],