vlasovskikh / funcparserlib

Recursive descent parsing library for Python based on functional combinators
https://funcparserlib.pirx.ru
MIT License
341 stars 38 forks source link

Add universal wheel support #50

Closed jdufresne closed 4 years ago

jdufresne commented 6 years ago

Wheels are the new standard of python distribution.

For detailed information, see PEP 427.

For high level information, see: https://pythonwheels.com/

Advantages of wheels

As this package is pure Pythong (no C files), I have marked the wheel as universal.

When you'd normally run python setup.py sdist upload, run instead python setup.py sdist bdist_wheel upload.

vlasovskikh commented 4 years ago

@jdufresne Thank you for updating your pull requests. I'm now considering switching from setuptools to Poetry, so some of the changes in your PRs may not be necessary. See my PR #61, feel free to review it, if you're interested :)

vlasovskikh commented 4 years ago

@jdufresne I switched from setuptools to poetry, so wheels are now created automatically by poetry build.