├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── python_ls.pth ├── python_ls ├── __init__.py └── _ls.py ├── setup.cfg ├── setup.py ├── tests └── test_ls.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcnr/python-ls/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcnr/python-ls/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcnr/python-ls/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcnr/python-ls/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcnr/python-ls/HEAD/README.md -------------------------------------------------------------------------------- /python_ls.pth: -------------------------------------------------------------------------------- 1 | import python_ls 2 | -------------------------------------------------------------------------------- /python_ls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcnr/python-ls/HEAD/python_ls/__init__.py -------------------------------------------------------------------------------- /python_ls/_ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcnr/python-ls/HEAD/python_ls/_ls.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcnr/python-ls/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcnr/python-ls/HEAD/tests/test_ls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielcnr/python-ls/HEAD/tox.ini --------------------------------------------------------------------------------