23 lines
472 B
Python
Executable File
23 lines
472 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from hy import __appname__, __version__
|
|
from setuptools import setup
|
|
|
|
long_description = open('README.md', 'r').read()
|
|
|
|
setup(
|
|
name=__appname__,
|
|
version=__version__,
|
|
packages=[
|
|
'hy',
|
|
'hy.lex',
|
|
],
|
|
author="Paul Tagliamonte",
|
|
author_email="paultag@debian.org",
|
|
long_description=long_description,
|
|
description='does some stuff with things & stuff',
|
|
license="Expat",
|
|
url="",
|
|
platforms=['any']
|
|
)
|