mirror of
https://github.com/cmur2/python-bme680.git
synced 2024-11-13 22:56:21 +01:00
Added BG tooling
This commit is contained in:
parent
50902ac08e
commit
2dc799a7a4
44
Makefile
Normal file
44
Makefile
Normal file
@ -0,0 +1,44 @@
|
||||
.PHONY: usage install uninstall
|
||||
usage:
|
||||
@echo "Usage: make <target>, where target is one of:\n"
|
||||
@echo "install: install the library locally from source"
|
||||
@echo "uninstall: uninstall the local library"
|
||||
@echo "python-readme: generate library/README.rst from README.md"
|
||||
@echo "python-wheels: build python .whl files for distribution"
|
||||
@echo "python-sdist: build python source distribution"
|
||||
@echo "python-clean: clean python build and dist directories"
|
||||
@echo "python-dist: build all python distribution files"
|
||||
|
||||
install:
|
||||
./install.sh
|
||||
|
||||
uninstall:
|
||||
./uninstall.sh
|
||||
|
||||
python-readme: library/README.rst
|
||||
|
||||
python-license: library/LICENSE.txt
|
||||
|
||||
library/README.rst: README.md
|
||||
pandoc --from=markdown --to=rst -o library/README.rst README.md
|
||||
|
||||
library/LICENSE.txt: LICENSE
|
||||
cp LICENSE library/LICENSE.txt
|
||||
|
||||
python-wheels: python-readme python-license
|
||||
cd library; python3 setup.py bdist_wheel
|
||||
cd library; python setup.py bdist_wheel
|
||||
|
||||
python-sdist: python-readme python-license
|
||||
cd library; python setup.py sdist
|
||||
|
||||
python-clean:
|
||||
-rm -r library/dist
|
||||
-rm -r library/build
|
||||
-rm -r library/*.egg-info
|
||||
|
||||
python-dist: python-clean python-wheels python-sdist
|
||||
ls library/dist
|
||||
|
||||
python-deploy: python-dist
|
||||
twine upload library/dist/*
|
22
install.sh
Executable file
22
install.sh
Executable file
@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
|
||||
printf "BME680 Python Library: Installer\n\n"
|
||||
|
||||
if [ $(id -u) -ne 0 ]; then
|
||||
printf "Script must be run as root. Try 'sudo ./install.sh'\n"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cd library
|
||||
|
||||
printf "Installing for Python 2..\n"
|
||||
python setup.py install
|
||||
|
||||
if [ -f "/usr/bin/python3" ]; then
|
||||
printf "Installing for Python 3..\n"
|
||||
python3 setup.py install
|
||||
fi
|
||||
|
||||
cd ..
|
||||
|
||||
printf "Done!\n"
|
24
uninstall.sh
Executable file
24
uninstall.sh
Executable file
@ -0,0 +1,24 @@
|
||||
#!/bin/bash
|
||||
|
||||
PACKAGE="bme680"
|
||||
|
||||
printf "BME680 Python Library: Uninstaller\n\n"
|
||||
|
||||
if [ $(id -u) -ne 0 ]; then
|
||||
printf "Script must be run as root. Try 'sudo ./uninstall.sh'\n"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cd library
|
||||
|
||||
printf "Unnstalling for Python 2..\n"
|
||||
pip uninstall $PACKAGE
|
||||
|
||||
if [ -f "/usr/bin/pip3" ]; then
|
||||
printf "Uninstalling for Python 3..\n"
|
||||
pip3 uninstall $PACKAGE
|
||||
fi
|
||||
|
||||
cd ..
|
||||
|
||||
printf "Done!\n"
|
Loading…
Reference in New Issue
Block a user