Skip to content

Commit 2b42b4f

Browse files
committed
added README, AUTHORS, updated MANIFEST, added gitignore
1 parent 1ceb7d2 commit 2b42b4f

File tree

5 files changed

+40
-5
lines changed

5 files changed

+40
-5
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.pyc

AUTHORS

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Patrick Kranzlmueller <[email protected]>
2+
Axel Swoboda <[email protected]>
3+
Klemens Mantzos <[email protected]>

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
include AUTHORS
2+
include README.rst
13
include LICENSE
24
recursive-include docs *
35
recursive-include filebrowser/static *

README.rst

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Django FileBrowser
2+
==================
3+
4+
**Media-Management with Grappelli**.
5+
6+
The FileBrowser is an extension to the `Django <http://www.djangoproject.com>`_ administration interface in order to:
7+
8+
* browse directories on your server and upload/delete/edit/rename files.
9+
* include images/documents to your models/database using the ``FileBrowseField``.
10+
* select images/documents with TinyMCE.
11+
12+
Requirements
13+
------------
14+
15+
FileBrowser 3.3 requires
16+
17+
* Django 1.3 (http://www.djangoproject.com)
18+
* Grappelli 2.3 (https://github.com/sehmaschine/django-grappelli)
19+
* PIL (http://www.pythonware.com/products/pil/)
20+
21+
Documentation
22+
-------------
23+
24+
http://readthedocs.org/docs/django-filebrowser/

setup.py

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
from setuptools import setup, find_packages
22

3+
README = read('README.rst')
4+
VERSION = __import__("compressor").__version__
5+
36
setup(
47
name='django-filebrowser',
5-
version='3.3.0',
6-
description='Media-Management with the Django Admin-Interface.',
7-
author='Patrick Kranzlmueller (vonautomatisch)',
8-
author_email='[email protected]',
9-
url='http://code.google.com/p/django-filebrowser/',
8+
version=VERSION,
9+
description='Media-Management with Grappelli',
10+
long_description = README,
11+
author='Patrick Kranzlmueller',
12+
author_email='[email protected]',
13+
url='https://github.com/sehmaschine/django-filebrowser',
14+
license = 'BSD',
1015
download_url='',
1116
packages=find_packages(),
1217
include_package_data=True,

0 commit comments

Comments
 (0)