Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 1.48 KB

README_Developer.md

File metadata and controls

42 lines (32 loc) · 1.48 KB

1. Build steps

1.1. firstly,build into binary files

Firstly,ensure the terminal path is .\src

Then, use the command below to compile the .py files to .pyd files

python setup.py build_ext --inplace

1.2. secondly,build the wheel file

Firstly,ensure the terminal path is the root folder

python -m build

then it will create a folder dist and a folder mypackage.egg-info

  • there are *.tar.gz and *.whl in the folder dist

You have to ensure the internet is fine when running this command.Because it needs internet to install the packages to the isolated environment,according to the output message below.

* Creating venv isolated environment...
* Installing packages in isolated environment... (setuptools>=42, wheel) 

2. Build with Makefile

Makefile provides the commands below

  • make bin: build into binary files
  • make build: build the wheel file
  • make all: run the comands at one time. When it completes, we can find the wheel in the folder dist
  • make clean_temp: clean all the temporary files
  • make clean: clean all the generated files
  • Others: see Makefile