pycapnp/buildutils/__init__.py
Jacob Alexander b3021e4f6b
Fixing flake8 warnings and errors
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --exclude benchmark

Excluding the benchmark directory (due to protobuf generated files)
Also removing some Python2 specific code
2019-09-27 00:15:13 -07:00

13 lines
237 B
Python

"""utilities for building pyzmq.
Largely adapted from h5py
"""
# flake8: noqa F401 F403
from .msg import *
from .config import *
from .detect import *
from .bundle import *
from .misc import *
from .patch import *
from .build import *