Skip to content

Commit f485991

Browse files
committed
added LICENSE, MANIFEST, setup
1 parent 295c377 commit f485991

File tree

3 files changed

+80
-0
lines changed

3 files changed

+80
-0
lines changed

LICENSE

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
django-grappelli
2+
----------------
3+
4+
Copyright (c) Patrick Kranzlmueller, Axel Swoboda (vonautomatisch werkstaetten),
5+
All rights reserved.
6+
7+
Redistribution and use in source and binary forms, with or without modification,
8+
are permitted provided that the following conditions are met:
9+
10+
1. Redistributions of source code must retain the above copyright notice,
11+
this list of conditions and the following disclaimer.
12+
2. Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation and/or
14+
other materials provided with the distribution.
15+
3. Neither the name of FileBrowser nor the names of its contributors may be used
16+
to endorse or promote products derived from this software without specific prior
17+
written permission.
18+
19+
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
20+
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22+
THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28+
29+
django-grappelli contains code from django-admin-tools
30+
------------------------------------------------------
31+
32+
copyright (c) 2010 David JEAN LOUIS
33+
34+
Permission is hereby granted, free of charge, to any person obtaining a copy
35+
of this software and associated documentation files (the "Software"), to deal
36+
in the Software without restriction, including without limitation the rights
37+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
38+
copies of the Software, and to permit persons to whom the Software is
39+
furnished to do so, subject to the following conditions:
40+
41+
The above copyright notice and this permission notice shall be included in all
42+
copies or substantial portions of the Software.
43+
44+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
45+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
46+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
47+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
48+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
49+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
50+
SOFTWARE.

MANIFEST.in

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
include LICENSE
2+
recursive-include docs *
3+
recursive-include grappelli/static *
4+
recursive-include grappelli/templates *
5+
recursive-include grappelli/dashboard/templates *

setup.py

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

0 commit comments

Comments
 (0)