mirror of
https://github.com/getsops/sops.git
synced 2026-02-05 12:45:21 +01:00
26 lines
399 B
Makefile
26 lines
399 B
Makefile
all:
|
|
python setup.py build
|
|
|
|
install:
|
|
python setup.py install
|
|
|
|
requirements:
|
|
sudo pip install -U -r requirements.txt
|
|
|
|
dev-requirements:
|
|
sudo pip install -U -r dev-requirements.txt
|
|
|
|
tests: install dev-requirements
|
|
py.test tests
|
|
|
|
test: tests
|
|
|
|
pypi:
|
|
python setup.py sdist check upload --sign
|
|
|
|
clean:
|
|
rm -rf *.pyc sops/*.pyc
|
|
rm -rf __pycache__ sops/__pycache__
|
|
rm -rf build/ dist/
|
|
rm -fr .tox/
|