Closed
Description
Hello,
I have a requirements.txt file to install python related packages, and inside I have got your (great) app.
But, when I run pip install -r requirements.txt, I get :
File "/srv/brahms/.virtualenvs/test/build/Django-Select2/setup.py", line 111, in <module>
VERSION = __import__(PACKAGE).__version__
File "django_select2/__init__.py", line 3, in <module>
from django.conf import settings
ImportError: No module named django.conf
which is "normal" because, due to the way pip works, django is not allready installed.
one way to solve this issue would be to have a dedicated version.py file inside your module.
Regards,