Skip to content

Commit

Permalink
Included README.md into PyPi package
Browse files Browse the repository at this point in the history
  • Loading branch information
ednarb29 committed Feb 1, 2022
1 parent 8bfc5d8 commit f8fe4b0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
13 changes: 10 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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):
Expand All @@ -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"],
Expand Down

0 comments on commit f8fe4b0

Please sign in to comment.