hy/setup.py

32 lines
653 B
Python
Raw Normal View History

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