From 4d484163c201511c69245c7fb1b182b11b77ba04 Mon Sep 17 00:00:00 2001 From: Johannes Hoppe Date: Tue, 29 Sep 2015 15:12:57 +0200 Subject: [PATCH] Fixed packaging error --- MANIFEST.in | 5 +---- django_select2/__init__.py | 2 +- setup.py | 3 +-- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 5fa050d..88414d8 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,8 +1,5 @@ include *.txt *.md recursive-include django_select2/static *.* recursive-exclude django_select2/static .DS_Store -recursive-include django_select2/templatetags *.* -recursive-exclude django_select2/templatetags .DS_Store *.pyc -exclude UK_Advanced_Cryptics_Dictionary_Licensing_Information.txt -exclude Internal_Notes.md +exclude requirements_dev.txt prune tests diff --git a/django_select2/__init__.py b/django_select2/__init__.py index 95092b4..0465bac 100644 --- a/django_select2/__init__.py +++ b/django_select2/__init__.py @@ -9,4 +9,4 @@ The app includes Select2 driven Django Widgets and Form Fields. """ -__version__ = "5.0.1" +__version__ = "5.0.2" diff --git a/setup.py b/setup.py index d91a04c..0680f33 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,6 @@ from __future__ import unicode_literals import codecs import os -import sys from setuptools import Command, find_packages, setup @@ -49,7 +48,7 @@ setup( author_email=AUTHOR_EMAIL, license="LICENSE.txt", url=URL, - packages=find_packages('django_select2'), + packages=find_packages(), include_package_data=True, classifiers=[ "Development Status :: 5 - Production/Stable",