2
0

Makefile 125 B

123456789
  1. all: sdist bdist_wheel
  2. sdist:
  3. python setup.py sdist
  4. bdist_wheel:
  5. python setup.py bdist_wheel
  6. .PHONY : sdist bdist_wheel