Skip to content

Commit

Permalink
fix url, add build makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Dunn committed Feb 28, 2019
1 parent e1c76cc commit 366f85b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
pip: prep upload cleanup

prep:
if [ -d "dist" ]; then mv dist old_dist; fi

dist:
python3 setup.py sdist bdist_wheel

upload: dist
python3 -m twine upload dist/*

cleanup:
if [ -d "dist" ]; rm -rf old_dist; fi
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
version='1.3.0',
description='Singer.io target for writing data to Google BigQuery',
author='RealSelf Business Intelligence',
url='https://realself.com',
url='https://github.com/RealSelf/target-bigquery',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['target_bigquery'],
install_requires=[
Expand Down

0 comments on commit 366f85b

Please sign in to comment.