from .station import *
from .tools import *
-from .__init__ import __version__
+from .version import __version__
mimetypes.add_type('application/x-yaml', '.yaml')
mimetypes.add_type('application/x-yaml', '.yml')
ignore_errors = False
max_retry = 0
- def __init__(self, conf_file):
+ def __init__(self, args):
Thread.__init__(self)
- self.conf_file = conf_file
- self.conf = get_conf_dict(self.conf_file)
+ self.config_file = args.config_file
+ self.conf = get_conf_dict(self.config_file)
# print(self.conf)
if 'deefuzzer' not in self.conf :
long_description=open('README.rst').read(),
author="Guillaume Pellerin",
author_email="yomguy@parisson.com",
- version='0.9.0',
+ version='0.9.1',
install_requires=[
'setuptools',
'wheel',