- fix/coveralls
- Resolve issue 34
Added __eq__ method to Config class to prevent errors
- Replace tracer Jaeger with Lightstep
We use [Opentracing](https://github.com/opentracing/opentracing-python) and [Opentracing Flask](https://github.com/opentracing-contrib/python-flask/tree/master/example) to trace all the requests. This lib needs a client and, actually, we work with [Jaeger](https://github.com/jaegertracing/jaeger-client-python).
I Replaced [Jaeger](https://github.com/jaegertracing/jaeger-client-python) with [Lightstep](https://github.com/lightstep/lightstep-tracer-python). I have compared both and Jaeger could be better but, at this moment, Jaegger have a lot of deprecated problems, for example:
* Not working with Flask-OpenTracing==1.0.0. use 0.2.0
* Not working with opentracing==2.0.0
* Use Tornado < 5. Tornado < 5 have security errors
When Jaeger will be updated, we replace in `pyms/tracer/main.py` the initialization of the tracer
- Added [Bandit](https://github.com/PyCQA/bandit) to static security analysis
- Added [Safety](https://github.com/pyupio/safetyt) to requirements security analysis
- Replaced unittest with [Pytest](https://docs.pytest.org/en/latest/)
- Added tests to docs