1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-01-01 12:34:58 +00:00
bazarr/libs/smmap/__init__.py

12 lines
342 B
Python
Raw Normal View History

"""Intialize the smmap package"""
__author__ = "Sebastian Thiel"
__contact__ = "byronimo@gmail.com"
__homepage__ = "https://github.com/gitpython-developers/smmap"
version_info = (2, 0, 4)
__version__ = '.'.join(str(i) for i in version_info)
# make everything available in root package for convenience
from .mman import *
from .buf import *