Tooling around real quick from this morning

This commit is contained in:
Paul Tagliamonte 2012-12-17 09:26:24 -05:00
parent 14e716f05f
commit 10b3d6c3cc
2 changed files with 5 additions and 2 deletions

View File

@ -7,4 +7,4 @@ class HYMap(dict, HYObject):
self[node] = nodes[node] self[node] = nodes[node]
def get_children(self): def get_children(self):
return self.keys() return self.keys() + self.values()

View File

@ -10,7 +10,10 @@ setup(**{
"name": appname, "name": appname,
"version": version, "version": version,
"packages": [ "packages": [
'hy' 'hy',
'hy.lang',
'hy.lex',
'hy.compiler'
], ],
"author": "Paul Tagliamonte", "author": "Paul Tagliamonte",
"author_email": "paultag@debian.org", "author_email": "paultag@debian.org",