hy/setup.py

33 lines
676 B
Python
Raw Permalink Normal View History

2012-12-15 14:48:16 -05:00
#!/usr/bin/env python
from setuptools import setup
2012-12-18 09:11:42 -05:00
long_description = """This thing does stuff and
things with other things until things looks like other
things. """
2012-12-15 14:48:16 -05:00
appname = "hy"
2013-01-22 18:39:56 -05:00
version = "0.8.2"
2012-12-15 14:48:16 -05:00
setup(**{
"name": appname,
"version": version,
"packages": [
'hy',
'hy.lang',
'hy.lex',
'hy.compiler'
2012-12-15 14:48:16 -05:00
],
"author": "Paul Tagliamonte",
"author_email": "tag@pault.ag",
2012-12-15 14:48:16 -05:00
"long_description": long_description,
"description": 'lisp and python love eachother',
2012-12-15 14:48:16 -05:00
"license": "Expat",
"url": "http://hy.pault.ag/",
2012-12-18 19:24:10 -05:00
"platforms": ['any'],
"scripts": [
2013-01-15 20:02:10 -05:00
"bin/hython",
"bin/bhython"
2012-12-18 19:24:10 -05:00
]
2012-12-15 14:48:16 -05:00
})