pythonhacktoberfeststeamauthenticationauthenticatorsteam-authenticatorsteam-clientsteam-guard-codessteam-websteamworksvalvewebapi
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.
51 lines
1022 B
51 lines
1022 B
define HELPBODY
|
|
Available commands:
|
|
|
|
make help - this thing.
|
|
make init - install python dependancies
|
|
make test - run tests and coverage
|
|
make pylint - code analysis
|
|
make build - pylint + test
|
|
|
|
endef
|
|
|
|
export HELPBODY
|
|
help:
|
|
@echo "$$HELPBODY"
|
|
|
|
init:
|
|
pip install -r requirements.txt
|
|
|
|
test:
|
|
coverage erase
|
|
PYTHONHASHSEED=0 nosetests --verbosity 1 --with-coverage --cover-package=steam
|
|
|
|
pylint:
|
|
pylint -r n -f colorized steam || true
|
|
|
|
build: pylint test
|
|
|
|
clean:
|
|
rm -rf dist steam.egg-info steam/*.pyc
|
|
|
|
dist: clean
|
|
python setup.py sdist
|
|
|
|
register:
|
|
python setup.py register -r pypi
|
|
|
|
upload: dist register
|
|
twine upload -r pypi dist/*
|
|
|
|
pb_fetch:
|
|
wget -nv --show-progress -N -P ./steam/protobufs/ -i protobuf_list.txt
|
|
|
|
pb_compile:
|
|
for filepath in `ls ./steam/protobufs/*.proto`; do \
|
|
protoc --python_out ./steam/protobufs/ --proto_path=/usr/include --proto_path=./steam/protobufs "$$filepath"; \
|
|
done;
|
|
|
|
pb_clear:
|
|
rm -f ./stema/protobufs/*.proto
|
|
|
|
pb_update: pb_fetch pb_compile pb_clear
|
|
|