From 5028cde7c5a9432af77b59dee1526a9993c9391a Mon Sep 17 00:00:00 2001 From: Daniel Flook Date: Thu, 5 Jul 2018 08:24:47 +0100 Subject: [PATCH] :books: Add documentation links --- README.md | 6 ++++++ setup.py | 1 + 2 files changed, 7 insertions(+) diff --git a/README.md b/README.md index 920d5eda..06e1dbca 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,10 @@ Transforms Python source code into it's most compact representation. python-minifier supports Python 2.6 to 2.7 and Python 3.3 to 3.7. +* [PyPi](https://pypi.org/project/python-minifier/) +* [Documentation](https://dflook.github.io/python-minifier/) +* [Issues](https://github.com/dflook/python-minifier/issues) + As an example, the following python source: ```python @@ -129,6 +133,8 @@ with open('hello.py') as f: print(python_minifier.minify(f.read())) ``` +Documentation is available at [dflook.github.io/python-minifier/](https://dflook.github.io/python-minifier/) + ## License Available under the MIT License. Full text is in the [LICENSE](LICENSE) file. diff --git a/setup.py b/setup.py index f759bf8c..4837b044 100644 --- a/setup.py +++ b/setup.py @@ -19,6 +19,7 @@ license='MIT', project_urls={ 'Issues': 'https://github.com/dflook/python-minifier/issues', + 'Documentation': 'https://dflook.github.io/python-minifier/', 'Say Thanks!': 'https://saythanks.io/to/dflook', }, keywords='minify minifier',