├── .gitignore ├── .travis.yml ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── build_docs.sh ├── conf.py └── index.rst ├── makefile ├── purl ├── __init__.py ├── template.py └── url.py ├── pytest.ini ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_expansion.py ├── test_template.py ├── test_url.py └── test_utils.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.rst LICENSE 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/build_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/docs/build_docs.sh -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/docs/index.rst -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/makefile -------------------------------------------------------------------------------- /purl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/purl/__init__.py -------------------------------------------------------------------------------- /purl/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/purl/template.py -------------------------------------------------------------------------------- /purl/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/purl/url.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_expansion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/tests/test_expansion.py -------------------------------------------------------------------------------- /tests/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/tests/test_template.py -------------------------------------------------------------------------------- /tests/test_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/tests/test_url.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/purl/HEAD/tox.ini --------------------------------------------------------------------------------