Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
Bump version and add classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
koszti committed Aug 12, 2019
1 parent 602eb9d commit 0562081
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,20 @@

from setuptools import setup

with open('README.md') as f:
long_description = f.read()

setup(name="pipelinewise-target-postgres",
version="1.0.0",
version="1.0.1",
description="Singer.io target for loading data to PostgreSQL - PipelineWise compatible",
long_description=long_description,
long_description_content_type='text/markdown',
author="TransferWise",
url='https://github.com/transferwise/pipelinewise-target-postgres',
classifiers=["Programming Language :: Python :: 3 :: Only"],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only'
],
py_modules=["target_postgres"],
install_requires=[
'singer-python==5.1.1',
Expand All @@ -22,4 +30,4 @@
packages=["target_postgres"],
package_data = {},
include_package_data=True,
)
)

0 comments on commit 0562081

Please sign in to comment.