diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..93fedd2 --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Paul R. Tagliamonte diff --git a/COPYRIGHT b/COPYRIGHT new file mode 100644 index 0000000..1d999cd --- /dev/null +++ b/COPYRIGHT @@ -0,0 +1,20 @@ +Copyright (c) 2010-2012 Paul Tagliamonte + +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. + diff --git a/hylander.hy b/hylander.hy deleted file mode 100644 index fd18431..0000000 --- a/hylander.hy +++ /dev/null @@ -1,9 +0,0 @@ -; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp - -(import ["sys" - "os.path"]) - -(def square (fn [x] - (* x x))) - -(print os.path) diff --git a/setup.py b/setup.py index 4268f7a..ceaa2a7 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup long_description = open('README.md', 'r').read() appname = "hy" -version = "0.0.1" +version = "0.6.0" setup(**{ "name": appname, @@ -16,10 +16,10 @@ setup(**{ 'hy.compiler' ], "author": "Paul Tagliamonte", - "author_email": "paultag@debian.org", + "author_email": "tag@pault.ag", "long_description": long_description, - "description": 'does some stuff with things & stuff', + "description": 'lisp and python love eachother', "license": "Expat", - "url": "", + "url": "http://hy.pault.ag/", "platforms": ['any'] }) diff --git a/test.py b/test.py deleted file mode 100644 index bff9aaa..0000000 --- a/test.py +++ /dev/null @@ -1,4 +0,0 @@ -import hy.lang.importer -import hylander - -print "From python:", hylander.square(10)