Skip to content

Commit 4d6277d

Browse files
committedDec 16, 2010
first update, some initial files
1 parent 895de80 commit 4d6277d

File tree

7 files changed

+44
-0
lines changed

7 files changed

+44
-0
lines changed
 

‎.gitignore

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

‎AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Patrick Kranzlmueller <patrick@vonautomatisch.at>
2+
Axel Swoboda <axel@vonautomatisch.at>

‎LICENSE

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Copyright (c) 2010, Patrick Kranzlmueller, Axel Swoboda (vonautomatisch werkstaetten), All rights reserved.
2+
3+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4+
5+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
6+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
7+
3. Neither the name of Django-Grappelli nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
8+
9+
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

‎MANIFEST.in

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
include grappelli/LICENSE
2+
recursive-include grappelli/media *
3+
recursive-include grappelli/templates *.html
4+
recursive-include grappelli/locale *.mo *.po
5+
recursive-include grappelli/models/fixtures *.json

‎README

Whitespace-only changes.

‎README.rst

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
django-grappelli
2+
================
3+
4+
readme

‎setup.py

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name='django-grappelli',
5+
version='1.3',
6+
description='A jazzy skin for the Django Admin-Interface.',
7+
author='Patrick Kranzlmueller, Axel Swoboda (vonautomatisch)',
8+
author_email='patrick@vonautomatisch.at',
9+
url = "https://github.com/sehmaschine/django-grappelli"
10+
packages=find_packages(),
11+
include_package_data=True,
12+
zip_safe=False,
13+
classifiers=[
14+
'Development Status :: 4 - Beta',
15+
'Environment :: Web Environment',
16+
'Intended Audience :: Developers',
17+
'License :: OSI Approved :: BSD License',
18+
'Operating System :: OS Independent',
19+
'Programming Language :: Python',
20+
'Framework :: Django',
21+
]
22+
)
23+

0 commit comments

Comments
 (0)
Please sign in to comment.