chaokunyang commented on code in PR #1709: URL: https://github.com/apache/fury/pull/1709#discussion_r1659500231
########## python/README.md: ########## @@ -1 +1,49 @@ # Apache Fury™ Python + +Fury is a blazingly-fast multi-language serialization framework powered by just-in-time compilation and zero-copy. + +## Build Fury Python + +```bash +cd python +pip install pyarrow==14.0.0 Cython wheel numpy pytest +pip install -v -e . +``` + +### Environment Requirements + +- python 3.6+ + +## Testing + +```bash +cd python +pytest -v -s . +``` + +## Code Style + +```bash +cd python +# install dependencies fro styling +pip install black==22.1.0 flake8==3.9.1 flake8-quotes flake8-bugbear click==8.0.2 +# format python code +black pyfury Review Comment: Could we add flake8 check too -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
