summaryrefslogtreecommitdiff
path: root/smmap/__init__.py
blob: 2bdf055436d05d170e5f731ca25281a4a41e4aba (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 = (3, 0, 0)
__version__ = '.'.join(str(i) for i in version_info)

# make everything available in root package for convenience
from .mman import *
from .buf import *