├── .coveragerc ├── .gitignore ├── .pylintrc ├── .travis.yml ├── LICENSE.txt ├── README.md ├── delta ├── __init__.py └── parse.py ├── setup.cfg ├── setup.py ├── test ├── __init__.py └── test_parse.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [report] 2 | include=delta* 3 | show_missing=True 4 | fail_under=100 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlgomes/delta/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlgomes/delta/HEAD/.pylintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlgomes/delta/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlgomes/delta/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlgomes/delta/HEAD/README.md -------------------------------------------------------------------------------- /delta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlgomes/delta/HEAD/delta/__init__.py -------------------------------------------------------------------------------- /delta/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlgomes/delta/HEAD/delta/parse.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlgomes/delta/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlgomes/delta/HEAD/test/test_parse.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlgomes/delta/HEAD/tox.ini --------------------------------------------------------------------------------