diff --git a/MANIFEST.in b/MANIFEST.in index 4683001..d1333ad 100755 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ include HISTORY.rst include LICENSE include README.rst -recursive-include filechooser *.html *.png *js *py +recursive-include filechooser *.html *.png *.js *.py *.css diff --git a/README.rst b/README.rst index 08e67ae..7a7c716 100644 --- a/README.rst +++ b/README.rst @@ -54,8 +54,8 @@ The full documentation is at http://django-filechooser.readthedocs.org/. Requirements ------------ -- Python 3.2 or 3.3 -- Django >= 1.7 +- Python 3.2, 3.3 or 3.4 +- Django >= 1.6 Contributions and pull requests for other Django and Python versions are welcome. diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 8a7605d..c8dd35a 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -16,7 +16,7 @@ Example template Example urls.py --------------- -Note we call an object which is returned from the views to retrieve an url object to added to the list urls +Note we request an object from the views to retrieve an url object to be added to the list urls .. include:: example_urls.rst @@ -37,11 +37,3 @@ Settings -------- You can set defaults for ``django-filechooser`` in your settings file. Refer to :doc:`settings` for more information. - - -Demo application ----------------- - -The demo application provides a number of useful examples. - -https://github.com/dyve/django-bootstrap3/tree/develop/demo diff --git a/setup.py b/setup.py index 3ce030a..b116f0b 100755 --- a/setup.py +++ b/setup.py @@ -48,7 +48,9 @@ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', 'Operating System :: OS Independent', 'Topic :: Software Development :: Libraries', 'Topic :: Utilities',