hy/setup.py

26 lines
532 B
Python
Raw Normal View History

2012-12-15 20:48:16 +01:00
#!/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'
2012-12-15 20:48:16 +01:00
],
"author": "Paul Tagliamonte",
"author_email": "paultag@debian.org",
"long_description": long_description,
"description": 'does some stuff with things & stuff',
"license": "Expat",
"url": "",
"platforms": ['any']
})