Skip to content

Commit

Permalink
user-friendly setup
Browse files Browse the repository at this point in the history
  • Loading branch information
IanRFerguson committed Mar 27, 2024
1 parent c417a83 commit f8d6a58
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions run_setup.sh
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[
Expand Down

0 comments on commit f8d6a58

Please sign in to comment.