Skip to content
This repository has been archived by the owner on Oct 1, 2020. It is now read-only.

Latest commit

 

History

History
35 lines (25 loc) · 1.08 KB

README.md

File metadata and controls

35 lines (25 loc) · 1.08 KB

py509

Travis PyPI Documentation Status

Framework and scripts written with pyOpenSSL and cryptography for running public key infrastructure.

packaging

Consider using pex to package the scripts provided by this library to make them relocatable and installable on machines.

mkdir ~/wheel-cache
pip wheel -w ~/wheel-cache .
pex -r py509 --no-pypi --repo=~/wheel-cache -o pyssl-get -e py509.bin.get:main

This process is automated using a custom setuptools.Command in this project called pexify. To run the above code for each entry point specified in setup.py just run the following.

python setup.py pexify

docs

sphinx-build -W -b html docs docs/_build/html