hy/setup.py

33 lines
676 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"
2013-01-23 00:38:43 +01:00
version = "0.8.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": [
2013-01-16 02:02:10 +01:00
"bin/hython",
"bin/bhython"
2012-12-19 01:24:10 +01:00
]
2012-12-15 20:48:16 +01:00
})