blob: 725c420ea1fa3901366444912f69973ac3c04402 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
"""Intialize the smmap package"""
__author__ = "Sebastian Thiel"
__contact__ = "byronimo@gmail.com"
__homepage__ = "https://github.com/gitpython-developers/smmap"
version_info = (2, 0, 3)
__version__ = '.'.join(str(i) for i in version_info)
# make everything available in root package for convenience
from .mman import *
from .buf import *
|