forked from MiXaiLL76/faster_coco_eval
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
44 lines (32 loc) · 805 Bytes
/
Makefile
File metadata and controls
44 lines (32 loc) · 805 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
39
40
41
42
43
44
all: docker-sdist docker-3.7 docker-3.8 docker-3.9 docker-3.10 docker-3.11
ls -lah dist
sdist:
python3 -m build . --sdist
bdist: clean
python3 setup.py bdist_wheel
pip3 install dist/*.whl -U
wheel:
python3 -m build . --wheel
docker-sdist:
bash docker/auto_build.sh "cp38-cp38" sdist
docker-3.7:
bash docker/auto_build.sh "cp37-cp37m" wheel
docker-3.8:
bash docker/auto_build.sh "cp38-cp38" wheel
docker-3.9:
bash docker/auto_build.sh "cp39-cp39" wheel
docker-3.10:
bash docker/auto_build.sh "cp310-cp310" wheel
docker-3.11:
bash docker/auto_build.sh "cp311-cp311" wheel
pull:
twine check dist/*
twine upload --repository testpypi dist/*
pull-prod:
twine check dist/*
twine upload dist/*
clean:
rm -rf build
rm -rf *.egg-info
rm -rf dist
pip3 uninstall faster-coco-eval -y