Skip to content

Commit

Permalink
Merge pull request divio#6 from divio/restore-version
Browse files Browse the repository at this point in the history
Restore version
  • Loading branch information
FinalAngel authored Mar 7, 2024
2 parents 82c70f8 + 8a9a83e commit 14346ab
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 4 deletions.
13 changes: 9 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@ Changelog
=========


0.7.1 (2022-06-03)
0.7.2 (unreleased)
==================

* Add testing support via ``tox`` + ``docker``/``tox-docker`` + ``pytest``.
* Move to ``src``-based project layout.
* Add initial compatibility with Django 2.2, 3.0, and 4.0.
* Add linting checks for ``isort`` and ``flake8``.
* Move to PEP-517/PEP-518 distribution format.
* Use ``setuptools-scm`` for versioning.
Expand All @@ -18,6 +15,14 @@ Changelog
and ``multisite_plus_rewrite_domains`` management commands instead.


0.7.1 (2022-06-03)
==================

* Add testing support via tox + docker/tox-docker + pytest.
* Move to ``src``-based project layout.
* Add initial compatibility with Django 2.2, 3.0, and 4.0.


0.6.3 (2018-10-18)
==================

Expand Down
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/usr/bin/env python

from setuptools import find_packages, setup

setup(
name="django-multisite-plus",
version="0.7.2",
author="Divio AG",
author_email="[email protected]",
url="https://github.com/divio/django-multisite-plus",
license="BSD",
description="An extension to django-multisite that eases local development.",
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
zip_safe=False,
entry_points="""
[console_scripts]
django-multisite-plus=django_multisite_plus.cli:main
""",
)

0 comments on commit 14346ab

Please sign in to comment.