mirror of
https://github.com/brycedrennan/imaginAIry
synced 2024-10-31 03:20:40 +00:00
70 lines
2.6 KiB
Makefile
70 lines
2.6 KiB
Makefile
|
SHELL := /bin/bash
|
||
|
python_version = 3.10.6
|
||
|
venv_prefix = imaginairy
|
||
|
venv_name = $(venv_prefix)-$(python_version)
|
||
|
pyenv_instructions=https://github.com/pyenv/pyenv#installation
|
||
|
pyenv_virt_instructions=https://github.com/pyenv/pyenv-virtualenv#pyenv-virtualenv
|
||
|
|
||
|
|
||
|
init: require_pyenv ## Setup a dev environment for local development.
|
||
|
@pyenv install $(python_version) -s
|
||
|
@echo -e "\033[0;32m ✔️ 🐍 $(python_version) installed \033[0m"
|
||
|
@if ! [ -d "$$(pyenv root)/versions/$(venv_name)" ]; then\
|
||
|
pyenv virtualenv $(python_version) $(venv_name);\
|
||
|
fi;
|
||
|
@pyenv local $(venv_name)
|
||
|
@echo -e "\033[0;32m ✔️ 🐍 $(venv_name) virtualenv activated \033[0m"
|
||
|
pip install --upgrade pip pip-tools
|
||
|
pip-sync requirements-dev.txt
|
||
|
@echo -e "\nEnvironment setup! ✨ 🍰 ✨ 🐍 \n\nCopy this path to tell PyCharm where your virtualenv is. You may have to click the refresh button in the pycharm file explorer.\n"
|
||
|
@echo -e "\033[0;32m"
|
||
|
@pyenv which python
|
||
|
@echo -e "\n\033[0m"
|
||
|
@echo -e "The following commands are available to run in the Makefile\n"
|
||
|
@make -s help
|
||
|
|
||
|
af: autoformat ## Alias for `autoformat`
|
||
|
autoformat: ## Run the autoformatter.
|
||
|
@isort --atomic --profile black .
|
||
|
@black .
|
||
|
|
||
|
test: ## Run the tests.
|
||
|
@pytest
|
||
|
@echo -e "The tests pass! ✨ 🍰 ✨"
|
||
|
|
||
|
lint: ## Run the code linter.
|
||
|
@pylama
|
||
|
@echo -e "No linting errors - well done! ✨ 🍰 ✨"
|
||
|
|
||
|
deploy: ## Deploy the package to pypi.org
|
||
|
pip install twine wheel
|
||
|
-git tag $$(python setup.py -V)
|
||
|
git push --tags
|
||
|
python setup.py bdist_wheel
|
||
|
python setup.py sdist
|
||
|
@echo 'pypi.org Username: '
|
||
|
@read username && twine upload dist/* -u $$username;
|
||
|
rm -rf build
|
||
|
rm -rf dist
|
||
|
@echo "Deploy successful! ✨ 🍰 ✨"
|
||
|
|
||
|
requirements: ## Freeze the requirements.txt file
|
||
|
pip-compile setup.py requirements-dev.in --output-file=requirements-dev.txt --upgrade
|
||
|
|
||
|
require_pyenv:
|
||
|
@if ! [ -x "$$(command -v pyenv)" ]; then\
|
||
|
echo -e '\n\033[0;31m ❌ pyenv is not installed. Follow instructions here: $(pyenv_instructions)\n\033[0m';\
|
||
|
exit 1;\
|
||
|
else\
|
||
|
echo -e "\033[0;32m ✔️ pyenv installed\033[0m";\
|
||
|
fi
|
||
|
@if ! [[ "$$(pyenv virtualenv --version)" == *"pyenv-virtualenv"* ]]; then\
|
||
|
echo -e '\n\033[0;31m ❌ pyenv virtualenv is not installed. Follow instructions here: $(pyenv_virt_instructions) \n\033[0m';\
|
||
|
exit 1;\
|
||
|
else\
|
||
|
echo -e "\033[0;32m ✔️ pyenv-virtualenv installed\033[0m";\
|
||
|
fi
|
||
|
|
||
|
help: ## Show this help message.
|
||
|
@## https://gist.github.com/prwhite/8168133#gistcomment-1716694
|
||
|
@echo -e "$$(grep -hE '^\S+:.*##' $(MAKEFILE_LIST) | sed -e 's/:.*##\s*/:/' -e 's/^\(.\+\):\(.*\)/\\x1b[36m\1\\x1b[m:\2/' | column -c2 -t -s :)" | sort
|