Skip to content

Commit

Permalink
rename; add a licence etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
ejones committed Sep 14, 2011
1 parent 69160a4 commit 8fdeaf5
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 0 deletions.
19 changes: 19 additions & 0 deletions LICENSE
@@ -0,0 +1,19 @@
Copyright (C) 2011 by Evan Jones and Adam Gravitis

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -0,0 +1 @@
recursive-include js *.js
10 changes: 10 additions & 0 deletions README.rst
@@ -0,0 +1,10 @@
mythril
=======

``mythril`` is a lightweight library for producing and consuming, formatting and displaying disparate and varied data (e.g., in a Web App) in, again, a light and feature-separated (read: DRY) way. If you have lots of little "Model" classes, multiple inputand output sources/formats, gangly "Views" and you're pulling out your hair, this library may be for you.

It also includes a number of utilities for fine-grained and remote control of Web "widgets".

Licensed under the MIT License. See the LICENCE file distributed with this code for more details.

Copyright (C) 2011 Evan Jones and Adam Gravitis.
File renamed without changes.
Empty file added mythril/__init__.py
Empty file.
File renamed without changes.
15 changes: 15 additions & 0 deletions setup.py
@@ -0,0 +1,15 @@
#!/usr/bin/env python
from setuptools import setup

setup(
name='mythril',
version='0.0.1',
author='Evan Jones and Adam Gravitis',
author_email='evan.q.jones@gmail.com',
packages=[ 'mythril' ],
url='http://github.com/ejones/mythril/',
license='MIT',
description='Lightweight library for transforming data and content',
long_description=open( 'README.rst' ).read(),
requires=[ 'simplejson' ],
install_requires=[ 'simplejson >= 2.1.0' ])

0 comments on commit 8fdeaf5

Please sign in to comment.