Implement a secure ICS protocol targeting LoRa Node151 microcontroller for controlling irrigation.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- .PHONY: init freeze test test_verbose build_dist upload
-
- venv:
- python3 -m venv .env
-
- init:
- pip install -r requirements.txt
-
- freeze:
- pip freeze | grep -v "pkg-resources" > requirements.txt
-
- test:
- nosetests tests/*
-
- test_verbose:
- nosetests --nocapture tests/*
-
- build_dist:
- rm -rf dist/*
- python3 setup.py sdist bdist_wheel
-
- upload_test:
- python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
-
- upload:
- python3 -m twine upload dist/*
|