diff --git a/run_setup.sh b/run_setup.sh new file mode 100644 index 0000000..94a1509 --- /dev/null +++ b/run_setup.sh @@ -0,0 +1,14 @@ +set -e + +if [ -d ./build ]; then + echo "Clearing build directory..." + rm -r ./build/* +fi + +if [ -d ./dist ]; then + echo "Clearing dist directory..." + rm -r ./dist/* +fi + +echo "Running build stage..." +python setup.py sdist bdist_wheel \ No newline at end of file diff --git a/setup.py b/setup.py index 7dff80b..fffdc9a 100644 --- a/setup.py +++ b/setup.py @@ -14,11 +14,11 @@ def main(): setuptools.setup( name="klondike", - version="0.0.1", + version="0.0.2", author="Ian Richard Ferguson", author_email="IRF229@nyu.edu", url="https://github.com/IanRFerguson/klondike", - keywords=["PROGRESSIVE", "API", "ETL"], + keywords=["API", "ETL", "BIGQUERY"], packages=setuptools.find_packages(), install_requires=INSTALL_REQUIRES, classifiers=[