s-expressions / pose

Portable S-expressions (POSE) spec and libs
29 stars 3 forks source link

Package the Python library #18

Closed lassik closed 1 year ago

lassik commented 1 year ago

Finally got around to polishing this into a shippable state. This is still "alpha" or "beta" quality, but now good enough that I'm using it for real work. I pushed it to the testing version of PyPI (Python Package Index) and am able to successfully use it from there.

lassik commented 1 year ago

P.S. I'm not a Python expert, so there may be any number of things that could be improved about the code, testing, and packaging. There also isn't any API documentation at the moment.

The name of the package is pose_expr since there are several other pose packages in PyPI.

Here's our testing package. It should be possible to install it via:

python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps pose_expr
lassik commented 1 year ago

Thansk!