Skip to content

Commit 4491949

Browse files
mikbuchMikolaj Buchwald
authored andcommitted
Newest version 0.1.5
1 parent 86d8ef9 commit 4491949

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

django_matomo.egg-info/PKG-INFO

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: django-matomo
3-
Version: 0.1.4
3+
Version: 0.1.5
44
Summary: A simple app to add the Matomo JS tracking code to your template. Forked from `django-piwik`.
55
Home-page: https://github.com/mikbuch/django-matomo
66
Author: Mikolaj Buchwald
@@ -22,7 +22,8 @@ Forked from `django-piwik <https://github.com/jasjukaitis/django-piwik>`_ (legac
2222

2323
`django-piwik` is metioned as an official Django plugin for Matomo: https://matomo.org/integrate/
2424

25-
## Requirements
25+
Requirements
26+
------------
2627

2728
* Django
2829

@@ -51,18 +52,33 @@ In the template, put ``{% load matomo_tags %}`` to the top and add ``{% tracking
5152

5253
That's it. Happy tracking!
5354

55+
Uploading to PyPi
56+
-----------------
57+
58+
Article on Medium (Towards Data Science) on `how to upload packages to PyPi <https://towardsdatascience.com/how-to-upload-your-python-package-to-pypi-de1b363a1b3>`_.
59+
60+
In short:
61+
62+
``python setup.py sdist``
63+
64+
``twine upload dist/*``
65+
5466
Version history
5567
---------------
5668

57-
Main changes were introduced in ``0.1`` version of the package. Versions up to ``0.1.4`` are mainly formatting changes for the RST README format.
69+
* Main changes were introduced in ``0.1`` version of the package.
70+
71+
* Versions up to ``0.1.4`` are mainly formatting changes for the RST README format.
72+
73+
* Version ``0.1.5`` information on uploading to PyPi added to the README. Minor formatting changes.
5874

5975

6076
Author(s)
6177
---------
6278

6379
Copyright 2022 Mikolaj Buchwald <[email protected]>
6480

65-
as `django-piwik`: Copyright 2013 Raphael Jasjukaitis <[email protected]>
81+
as ``django-piwik``: Copyright 2013 Raphael Jasjukaitis <[email protected]>
6682

6783

6884
Released under the BSD license.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name='django-matomo',
7-
version='0.1.4',
7+
version='0.1.5',
88
description='A simple app to add the Matomo JS tracking code to your template. Forked from `django-piwik`.',
99
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
1010
author='Mikolaj Buchwald',

0 commit comments

Comments
 (0)