Hi,
I am trying to create a Django application as a plugin to integrate with other Django framework applications or websites (for example: a Payment gateway plugin). My application has package hierarchy as mentioned below.
DjangoProject
|=> Djangowork
|templates
|=>_inti_.py
| settings.py
| urls.py
| wsgi.py
| views.py
|=>manage.py
I have already implemented the functionalities for the application but I am unable to convert the package into a plug-in. Is there a way to convert it into a plug-in, to be used with other Django websites or applications? If not as a plug-in, what would be other ways to accomplish such tasks?
I will be grateful for any help regarding the queries I have. Thanks in advance.