Browse Source

Merge pull request #44 from hwartig/patch-2

Make `make lint` work for new projects.
main
Peter Bull 8 years ago committed by GitHub
parent
commit
2c08fd900b
  1. 2
      {{ cookiecutter.repo_name }}/Makefile
  2. 3
      {{ cookiecutter.repo_name }}/src/data/make_dataset.py

2
{{ cookiecutter.repo_name }}/Makefile

@ -20,7 +20,7 @@ clean:
find . -name "*.pyc" -exec rm {} \; find . -name "*.pyc" -exec rm {} \;
lint: lint:
flake8 --exclude=lib/,bin/ . flake8 --exclude=lib/,bin/,docs/conf.py .
sync_data_to_s3: sync_data_to_s3:
aws s3 sync data/ s3://$(BUCKET)/data/ aws s3 sync data/ s3://$(BUCKET)/data/

3
{{ cookiecutter.repo_name }}/src/data/make_dataset.py

@ -19,10 +19,9 @@ if __name__ == '__main__':
# not used in this stub but often useful for finding various files # not used in this stub but often useful for finding various files
project_dir = os.path.join(os.path.dirname(__file__), os.pardir, os.pardir) project_dir = os.path.join(os.path.dirname(__file__), os.pardir, os.pardir)
# find .env automagically by walking up directories until it's found, then # find .env automagically by walking up directories until it's found, then
# load up the .env entries as environment variables # load up the .env entries as environment variables
load_dotenv(find_dotenv()) load_dotenv(find_dotenv())
main() main()

Loading…
Cancel
Save