Skip to content

Commit

Permalink
docs updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sehmaschine committed Sep 9, 2015
1 parent 3771a65 commit 9a4d0c6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/releasenotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ Updates
* Templatetag ``version`` can now be used as ``version ... as varname`` (instead of ``version_object``).
* New ``FileBrowseUploadField`` (experimental).

Depreciations
-------------
Upcoming Depreciations (3.7)
----------------------------

* ``version_object`` will be removed with 3.7
* Defining a ``VERSIONS_BASEDIR`` outside of site.directory will be mandatory with 3.7
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
import os
from setuptools import setup, find_packages


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
name='django-filebrowser',
version='3.6.1',
description='Media-Management with Grappelli',
long_description = read('README.rst'),
url = 'http://django-filebrowser.readthedocs.org',
long_description=read('README.rst'),
url='http://django-filebrowser.readthedocs.org',
download_url='',
author='Patrick Kranzlmueller, Axel Swoboda (vonautomatisch)',
author_email='office@vonautomatisch.at',
Expand All @@ -32,8 +33,8 @@ def read(fname):
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
],
zip_safe = False,
install_requires = [
zip_safe=False,
install_requires=[
'django-grappelli>=2.7',
],
)

0 comments on commit 9a4d0c6

Please sign in to comment.