Rename package to django_components on PyPI.

This commit is contained in:
Emil Stenström 2021-02-16 09:27:56 +01:00
parent f911a73ffb
commit 754fe20dce
2 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
# django-reusable-components
# django-components
<a href="https://github.com/EmilStenstrom/django-components/actions?query=workflow%3ABuild"><img align="right" src="https://github.com/EmilStenstrom/django-components/workflows/Build/badge.svg"></a>
<a href="https://pepy.tech/project/django-reusable-components"><img align="right" src="https://pepy.tech/badge/django-reusable-components"></a>
<a href="https://pepy.tech/project/django-components"><img align="right" src="https://pepy.tech/badge/django-components"></a>
A way to create simple reusable template components in Django.
@ -22,7 +22,7 @@ Read on to learn about the details!
Install the app into your environment:
> ```pip install django_reusable_components```
> ```pip install django_components```
Then add the app into INSTALLED APPS in settings.py

View file

@ -6,7 +6,7 @@ from setuptools import find_packages, setup
VERSION = '0.9'
setup(
name="django_reusable_components",
name="django_components",
packages=find_packages(exclude=["tests"]),
version=VERSION,
description="A way to create simple reusable template components in Django.",