added required files
This commit is contained in:
parent
d3c00b08ca
commit
e9004db44a
3
CHANGELOG
Normal file
3
CHANGELOG
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
0.1.0 - October 22 2009
|
||||||
|
=======================
|
||||||
|
- initial working release
|
10
LICENSE
Normal file
10
LICENSE
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
Copyright (c) 2009, Sunlight Foundation
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||||
|
* 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.
|
||||||
|
* Neither the name of Sunlight Foundation 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.
|
33
README.rst
Normal file
33
README.rst
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
============
|
||||||
|
django-layar
|
||||||
|
============
|
||||||
|
|
||||||
|
Django generic view for making `Layar <http://layar.com>`_ endpoints.
|
||||||
|
|
||||||
|
Provides abstract class that responds to Layar API requests in the appropriate format. By implementing two small functions it is possible to add a layer to the Layar augmented reality application for Android and iPhone.
|
||||||
|
|
||||||
|
django-layar is a project of Sunlight Labs (c) 2009.
|
||||||
|
Written by James Turk <jturk@sunlightfoundation.com>
|
||||||
|
|
||||||
|
Source: http://github.com/sunlightlabs/django-layar/
|
||||||
|
|
||||||
|
Requirements
|
||||||
|
============
|
||||||
|
|
||||||
|
python >= 2.4
|
||||||
|
|
||||||
|
django >= 1.0
|
||||||
|
|
||||||
|
Installation
|
||||||
|
============
|
||||||
|
|
||||||
|
To install run
|
||||||
|
|
||||||
|
``python setup.py install``
|
||||||
|
|
||||||
|
which will install the application into the site-packages directory.
|
||||||
|
|
||||||
|
Usage
|
||||||
|
=====
|
||||||
|
|
||||||
|
TBD
|
26
setup.py
Normal file
26
setup.py
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
from distutils.core import setup
|
||||||
|
|
||||||
|
long_description = open('README.rst').read()
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name='django-layar',
|
||||||
|
version="0.1.0",
|
||||||
|
package_dir={'layar': 'layar'},
|
||||||
|
packages=['layar'],
|
||||||
|
description='helper for publishing data to Layar augmented reality browser from Django',
|
||||||
|
author='James Turk',
|
||||||
|
author_email='jturk@sunlightfoundation.com',
|
||||||
|
license='BSD License',
|
||||||
|
url='http://github.com/sunlightlabs/django-layar/',
|
||||||
|
long_description=long_description,
|
||||||
|
platforms=["any"],
|
||||||
|
classifiers=[
|
||||||
|
'Development Status :: 4 - Beta',
|
||||||
|
'Intended Audience :: Developers',
|
||||||
|
'License :: OSI Approved :: BSD License',
|
||||||
|
'Natural Language :: English',
|
||||||
|
'Operating System :: OS Independent',
|
||||||
|
'Programming Language :: Python',
|
||||||
|
'Environment :: Web Environment',
|
||||||
|
],
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user