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": [
|
2012-12-17 09:26:24 -05:00
|
|
|
'hy',
|
|
|
|
'hy.lang',
|
|
|
|
'hy.lex',
|
|
|
|
'hy.compiler'
|
2012-12-15 14:48:16 -05:00
|
|
|
],
|
|
|
|
"author": "Paul Tagliamonte",
|
2012-12-17 09:55:41 -05:00
|
|
|
"author_email": "tag@pault.ag",
|
2012-12-15 14:48:16 -05:00
|
|
|
"long_description": long_description,
|
2012-12-17 09:55:41 -05:00
|
|
|
"description": 'lisp and python love eachother',
|
2012-12-15 14:48:16 -05:00
|
|
|
"license": "Expat",
|
2012-12-17 09:55:41 -05:00
|
|
|
"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
|
|
|
})
|