├── .gitignore ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── pylintrc ├── requirements-dev.txt ├── requirements.txt ├── resources └── screenshot.png ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── test_url.py └── uroute ├── __init__.py ├── __main__.py ├── __version__.py ├── config.py ├── core.py ├── gui.py ├── url.py ├── util.py └── xdgdesktop.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterl/uroute/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterl/uroute/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterl/uroute/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterl/uroute/HEAD/README.md -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterl/uroute/HEAD/pylintrc -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | # Dev/Deployment 2 | nose 3 | coverage 4 | pypi-publisher 5 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyxdg 2 | -------------------------------------------------------------------------------- /resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterl/uroute/HEAD/resources/screenshot.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | 4 | [metadata] 5 | description-file=README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterl/uroute/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterl/uroute/HEAD/tests/test_url.py -------------------------------------------------------------------------------- /uroute/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uroute/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterl/uroute/HEAD/uroute/__main__.py -------------------------------------------------------------------------------- /uroute/__version__.py: -------------------------------------------------------------------------------- 1 | """Program version.""" 2 | 3 | VERSION = '0.1.3' 4 | -------------------------------------------------------------------------------- /uroute/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterl/uroute/HEAD/uroute/config.py -------------------------------------------------------------------------------- /uroute/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterl/uroute/HEAD/uroute/core.py -------------------------------------------------------------------------------- /uroute/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterl/uroute/HEAD/uroute/gui.py -------------------------------------------------------------------------------- /uroute/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterl/uroute/HEAD/uroute/url.py -------------------------------------------------------------------------------- /uroute/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterl/uroute/HEAD/uroute/util.py -------------------------------------------------------------------------------- /uroute/xdgdesktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walterl/uroute/HEAD/uroute/xdgdesktop.py --------------------------------------------------------------------------------