diff --git a/Makefile b/Makefile index 111091b..3b699c4 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,7 @@ install-dev: pre-commit autoupdate # Set up virtual environment +.PHONY: venv venv: python3 -m venv venv source venv/bin/activate && \ @@ -61,4 +62,4 @@ clean: find . | grep -E ".ipynb_checkpoints" | xargs rm -rf find . -type f -name ".coverage*" -ls -delete rm -rf htmlcov - rm -rf .mypy_cache + rm -rf .mypy_cache \ No newline at end of file diff --git a/setup.py b/setup.py index 19db77d..74a9fcf 100644 --- a/setup.py +++ b/setup.py @@ -50,9 +50,4 @@ extras_require={ "dev": dev_packages, }, - entry_points={ - "console_scripts": [ - "image-to-latex = cli.app:app", - ], - }, )