diff --git a/README.md b/README.md index cd23cb3..24d2266 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,7 @@ python -m bulk text ready.csv ``` If you're looking for an example file to play around with you can download -[the demo .csv file](https://github.com/koaning/bulk/blob/main/cluestarred.csv) in this repository. This dataset +[the demo .csv file](https://github.com/koaning/bulk/blob/main/utils/df.csv) in this repository. This dataset contains a subset of a dataset found on Kaggle. You can find the original [here](https://www.kaggle.com/datasets/thoughtvector/customer-support-on-twitter). ### Extra Settings diff --git a/setup.py b/setup.py index 3479c6a..0aa7564 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ }, entry_points={ 'console_scripts': [ - 'bulk = bulk.__main__:app', + 'bulk = bulk.__main__:cli.run', ], }, )