From 925b9ec0a554b2c85a46cecc7e1bba03d1407b1e Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Sat, 15 Dec 2012 14:48:16 -0500 Subject: [PATCH] Initial import. --- .gitignore | 3 +++ README.md | 0 hy/__init__.py | 0 setup.py | 22 ++++++++++++++++++++++ 4 files changed, 25 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 hy/__init__.py create mode 100755 setup.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a008a7f --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.pyc +*swp +*ly*egg* diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/hy/__init__.py b/hy/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..564db45 --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python + +from setuptools import setup + +long_description = open('README.md', 'r').read() +appname = "hy" +version = "0.0.1" + +setup(**{ + "name": appname, + "version": version, + "packages": [ + 'monomoy' + ], + "author": "Paul Tagliamonte", + "author_email": "paultag@debian.org", + "long_description": long_description, + "description": 'does some stuff with things & stuff', + "license": "Expat", + "url": "", + "platforms": ['any'] +})