├── .gitignore ├── Makefile ├── README.rst ├── VERSION ├── pea ├── __init__.py ├── context.py └── formatter.py ├── python-pea.xml ├── setup.py └── tests ├── __init__.py └── test_pea.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timbertson/pea/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timbertson/pea/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timbertson/pea/HEAD/README.rst -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1.2 -------------------------------------------------------------------------------- /pea/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timbertson/pea/HEAD/pea/__init__.py -------------------------------------------------------------------------------- /pea/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timbertson/pea/HEAD/pea/context.py -------------------------------------------------------------------------------- /pea/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timbertson/pea/HEAD/pea/formatter.py -------------------------------------------------------------------------------- /python-pea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timbertson/pea/HEAD/python-pea.xml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timbertson/pea/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_pea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timbertson/pea/HEAD/tests/test_pea.py --------------------------------------------------------------------------------