2016-09-15 18:19:49 +02:00
|
|
|
import logging
|
2016-10-19 06:12:44 +02:00
|
|
|
from conf import Config
|
2016-09-15 18:19:49 +02:00
|
|
|
|
2016-10-16 08:55:14 +02:00
|
|
|
__version__ = "0.6.7"
|
2016-09-15 18:19:49 +02:00
|
|
|
version = tuple(__version__.split('.'))
|
2016-10-19 06:12:44 +02:00
|
|
|
settings = Config()
|
2016-09-15 18:19:49 +02:00
|
|
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|