forked from Frameio/python-frameio-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
38 lines (26 loc) · 685 Bytes
/
Makefile
File metadata and controls
38 lines (26 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/sh
install-dev:
pip3 install -e .[dev]
curl -fLSs https://raw.githubusercontent.com/CircleCI-Public/circleci-cli/master/install.sh | bash
bump-minor:
bump2version minor
bump-major:
bump2version major
bump-patch:
bump2version patch
clean:
find . -name "*.pyc" -exec rm -f {} \;
test:
cd tests && pipenv run python integration.py
package:
pipenv run python3 setup.py sdist bdist_wheel
build-docker:
docker build . -t benchmark
run-benchmark:
docker run -it -e $1 benchmark
format:
black frameioclient
view-docs:
cd docs && pip install -r requirements.txt && make dev
publish-docs:
cd docs && pip install -r requirements.txt && make jekyll && make publish