mirror of
https://github.com/Hopiu/django-tos.git
synced 2026-05-02 16:14:42 +00:00
More boilerplate
This commit is contained in:
parent
b166a44690
commit
42d43e3b86
8 changed files with 61 additions and 0 deletions
5
AUTHORS.txt
Normal file
5
AUTHORS.txt
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
django-tos is a revsys project
|
||||
|
||||
The following is a list of much appreciated contributors:
|
||||
|
||||
Daniel Greenfeld <pydanny@gmail.com>
|
||||
27
LICENSE.txt
Normal file
27
LICENSE.txt
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
Copyright (c) RevSys and individual contributors.
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
|
||||
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.
|
||||
|
||||
3. Neither the name of django-taggit nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT OWNER 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.
|
||||
0
README.txt
Normal file
0
README.txt
Normal file
28
setup.py
Normal file
28
setup.py
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
import os
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
from tos import VERSION
|
||||
|
||||
f = open(os.path.join(os.path.dirname(__file__), 'README.txt'))
|
||||
readme = f.read()
|
||||
f.close()
|
||||
|
||||
setup(
|
||||
name='django-tos',
|
||||
version=".".join(map(str, VERSION)),
|
||||
description='django-tos is a reusable Django application for setting Terms of Service.',
|
||||
long_description=readme,
|
||||
author='Daniel Greenfeld',
|
||||
author_email='pydanny@gmail.com',
|
||||
url='http://github.com/revsys/django-tos/tree/master',
|
||||
packages=find_packages(),
|
||||
classifiers=[
|
||||
'Development Status :: 4 - Beta',
|
||||
'Environment :: Web Environment',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: BSD License',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python',
|
||||
'Framework :: Django',
|
||||
],
|
||||
)
|
||||
1
tos/__init__.py
Normal file
1
tos/__init__.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
VERSION = (0, 1, 0)
|
||||
0
tos/forms.py
Normal file
0
tos/forms.py
Normal file
0
tos/models.py
Normal file
0
tos/models.py
Normal file
0
tos/views.py
Normal file
0
tos/views.py
Normal file
Loading…
Reference in a new issue