forked from storerjeremy/python-semrush
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
21 lines (16 loc) · 670 Bytes
/
__init__.py
File metadata and controls
21 lines (16 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
"""Wrapper around the SEMrush API."""
# :copyright: (c) 2015 Jeremy Storer and individual contributors,
# All rights reserved.
# :license: MIT License, see LICENSE for more details.
from collections import namedtuple
version_info_t = namedtuple(
'version_info_t', ('major', 'minor', 'micro', 'releaselevel', 'serial'),
)
VERSION = version_info_t(0, 1, 2, '', '')
__version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
__author__ = 'Jeremy Storer'
__homepage__ = 'http://github.com/storerjeremy/python-semrush'
__docformat__ = 'restructuredtext'
# -eof meta-