Contributing
Development Status
PDFSyntax is currently MIT licensed, but the author notes it is "Open-Source, not Open-Contribution yet" while core features are stabilized. However, you can still fork the project and run it locally for development.
Setting up a Development Environment
-
Clone the repo:
git clone https://github.com/desgeeko/pdfsyntax.git -
Run Tests: The project uses Python's
unittest. You can run the suite via the makefile:
Or manually:make testpython3 -m unittest discover ./tests -v -
Clean Build Artifacts:
make clean -
Build Package:
make build