A Python library for creating and signing X.509 certificates.
- Related Crypto Libraries
- Current Release
- Dependencies
- Installation
- License
- Documentation
- Continuous Integration
- Testing
- Development
- CI Tasks
certbuilder is part of the modularcrypto family of Python packages:
0.14.2 - changelog
- asn1crypto
- oscrypto
- Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6 or pypy
pip install certbuildercertbuilder is licensed under the terms of the MIT license. See the LICENSE file for the exact license text.
- Windows via AppVeyor
- OS X via CircleCI
- Linux via Travis CI
- Test Coverage via Codecov
Tests are written using unittest and require no third-party packages:
python run.py testsTo run only some tests, pass a regular expression as a parameter to tests.
python run.py tests buildTo install the package used for linting, execute:
pip install --user -r requires/lintThe following command will run the linter:
python run.py lintSupport for code coverage can be installed via:
pip install --user -r requires/coverageCoverage is measured by running:
python run.py coverageTo install the packages requires to generate the API documentation, run:
pip install --user -r requires/api_docsThe documentation can then be generated by running:
python run.py api_docsTo install the necessary packages for releasing a new version on PyPI, run:
pip install --user -r requires/releaseReleases are created by:
-
Making a git tag in semver format
-
Running the command:
python run.py release
Existing releases can be found at https://pypi.python.org/pypi/certbuilder.
A task named deps exists to ensure a modern version of pip is installed,
along with all necessary testing dependencies.
The ci task runs lint (if flake8 is avaiable for the version of Python) and
coverage (or tests if coverage is not available for the version of Python).
If the current directory is a clean git working copy, the coverage data is
submitted to codecov.io.
python run.py deps
python run.py ci