File size: 125 Bytes
5e07a1f
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
all: sdist bdist_wheel

sdist:
	python setup.py sdist

bdist_wheel:
	python setup.py bdist_wheel

.PHONY : sdist bdist_wheel