├── .gitignore ├── .travis.yml ├── CHANGES.rst ├── Dockerfile ├── HACKING.md ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── appdirs.py ├── setup.cfg ├── setup.py ├── test ├── __init__.py └── test_api.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | tmp/ 4 | build/ 5 | dist/ 6 | .tox/ 7 | MANIFEST 8 | *.komodoproject 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/appdirs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/appdirs/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/appdirs/HEAD/Dockerfile -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/appdirs/HEAD/HACKING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/appdirs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/appdirs/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/appdirs/HEAD/README.rst -------------------------------------------------------------------------------- /appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/appdirs/HEAD/appdirs.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/appdirs/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/appdirs/HEAD/test/test_api.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/appdirs/HEAD/tox.ini --------------------------------------------------------------------------------