This repository has been archived on 2024-12-19. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-19/fabfile/__init__.py

15 lines
267 B
Python
Raw Normal View History

2018-05-11 10:01:49 +02:00
"""
Fabric is a Python library for performing devops tasks. If you have Fabric installed (systemwide or via pip) you can
run commands like this:
$ fab code_quality
For a list of commands
"""
from fabfile.tasks import code_quality
__all__ = ["code_quality"]