#!/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": [ 'hy', 'hy.lang', 'hy.lex', 'hy.compiler' ], "author": "Paul Tagliamonte", "author_email": "paultag@debian.org", "long_description": long_description, "description": 'does some stuff with things & stuff', "license": "Expat", "url": "", "platforms": ['any'] })