Skip to content

Commit

Permalink
Add templates to manifest, remove install note
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan P Kilby committed Dec 9, 2016
1 parent 471d983 commit f6b8ff1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 13 deletions.
5 changes: 4 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@ recursive-include docs *
recursive-include requirements *
recursive-include tests *
recursive-include django_filters/locale *
prune docs/_build
recursive-include django_filters/templates *.html
prune docs/_build
global-exclude __pycache__
global-exclude *.py[co]
6 changes: 0 additions & 6 deletions docs/guide/install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,6 @@ Django-filter can be installed from PyPI with tools like ``pip``:

Then add ``'django_filters'`` to your ``INSTALLED_APPS``.

.. note::

django-filter provides *some* localization for *some* languages. If you do
not need these translations (or would rather provide your own), then it is
unnecessary to add django-filter to the ``INSTALLED_APPS`` setting.


Requirements
------------
Expand Down
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,7 @@
maintainer_email='carlton.gibson@noumenal.es',
url='http://github.com/carltongibson/django-filter/tree/master',
packages=find_packages(exclude=['tests']),
package_data={
'django_filters': [
'locale/*/LC_MESSAGES/*',
],
},
include_package_data=True,
license='BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand All @@ -54,6 +50,5 @@
'Programming Language :: Python :: 3.5',
'Framework :: Django',
],
include_package_data=True,
zip_safe=False,
)

0 comments on commit f6b8ff1

Please sign in to comment.