eugene-eeo / tinyrecord

transaction support for TinyDB
MIT License
94 stars 11 forks source link

Release wheel #18

Open hugovk opened 3 years ago

hugovk commented 3 years ago

For the next release, please could you also release a wheel as well as an sdist?

Wheels are the new standard for Python distribution, more info: https://pythonwheels.com/

It's easy to do.

First install build:

python -m pip install build

Then run:

python -m build

And then upload both files to PyPI:

$ ls -l dist
total 32
-rw-r--r--  1 hugo  wheel  6500 11 Oct 16:46 tinyrecord-0.2.1-py3-none-any.whl
-rw-r--r--  1 hugo  wheel  8165 11 Oct 16:46 tinyrecord-0.2.1.tar.gz

Thank you!