├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── dev-requirements.txt ├── pytoml ├── __init__.py ├── core.py ├── parser.py ├── test.py ├── utils.py └── writer.py ├── setup.cfg ├── setup.py ├── test ├── decoder.py ├── test.py ├── test_parser.py └── test_writer.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/README.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest==3.0.7 2 | -------------------------------------------------------------------------------- /pytoml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/pytoml/__init__.py -------------------------------------------------------------------------------- /pytoml/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/pytoml/core.py -------------------------------------------------------------------------------- /pytoml/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/pytoml/parser.py -------------------------------------------------------------------------------- /pytoml/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/pytoml/test.py -------------------------------------------------------------------------------- /pytoml/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/pytoml/utils.py -------------------------------------------------------------------------------- /pytoml/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/pytoml/writer.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | 4 | [metadata] 5 | license_file = LICENSE 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/setup.py -------------------------------------------------------------------------------- /test/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/test/decoder.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/test/test.py -------------------------------------------------------------------------------- /test/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/test/test_parser.py -------------------------------------------------------------------------------- /test/test_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/test/test_writer.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avakar/pytoml/HEAD/tox.ini --------------------------------------------------------------------------------