Skip to content

Commit 5028cde

Browse files
committed
📚 Add documentation links
1 parent 9fdb939 commit 5028cde

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Transforms Python source code into it's most compact representation.
44

55
python-minifier supports Python 2.6 to 2.7 and Python 3.3 to 3.7.
66

7+
* [PyPi](https://pypi.org/project/python-minifier/)
8+
* [Documentation](https://dflook.github.io/python-minifier/)
9+
* [Issues](https://github.com/dflook/python-minifier/issues)
10+
711
As an example, the following python source:
812

913
```python
@@ -129,6 +133,8 @@ with open('hello.py') as f:
129133
print(python_minifier.minify(f.read()))
130134
```
131135

136+
Documentation is available at [dflook.github.io/python-minifier/](https://dflook.github.io/python-minifier/)
137+
132138
## License
133139

134140
Available under the MIT License. Full text is in the [LICENSE](LICENSE) file.

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
license='MIT',
2020
project_urls={
2121
'Issues': 'https://github.com/dflook/python-minifier/issues',
22+
'Documentation': 'https://dflook.github.io/python-minifier/',
2223
'Say Thanks!': 'https://saythanks.io/to/dflook',
2324
},
2425
keywords='minify minifier',

0 commit comments

Comments
 (0)