df7bb1d29a
Summary: This update does away with the scripts in bin and changes setup.py to use entry_points in cmdline.py for the scripts 'hy' and 'hyc'. This fixes installing and running on Windows. The tests are updated to run the 'hy' script produced by setup.py and not from bin/hy. This is more correct and makes the tox tests run on both Window and *nix. For running hy or nosetests directly in the source tree, you do have to run 'python setup.py develop' first. But since tox runs and builds dists, all tox tests pass on all platforms. Also, since there is no built-in readline on Windows, the setup.py only on Windows requires 'pyreadline' as a replacement. Switched from optparse to argparse in cmdline.py Instead of trying to manually separate args meant for hy from args meant for a hy script, this switches from optparse to argparse for the CLI. argparse automatically peels out args meant for hy and leaves the rest, including the user hy script in options.args. This fixes the issue @paultag found running "hy foo" where foo is not a real file. Also added a test that makes sure trying to run a non-existent script exits instead of dropping the user into the REPL. Added argparse as setup.py resource (and removed from tox.ini) as well as removed uses of deprecated setf
82 lines
2.8 KiB
Python
Executable File
82 lines
2.8 KiB
Python
Executable File
#!/usr/bin/env python
|
|
# Copyright (c) 2012, 2013 Paul Tagliamonte <paultag@debian.org>
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
# copy of this software and associated documentation files (the "Software"),
|
|
# to deal in the Software without restriction, including without limitation
|
|
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
# and/or sell copies of the Software, and to permit persons to whom the
|
|
# Software is furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
# DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
from hy import __appname__, __version__
|
|
from setuptools import setup
|
|
import os
|
|
import sys
|
|
|
|
long_description = """Hy is a Python <--> Lisp layer. It helps
|
|
make things work nicer, and lets Python and the Hy lisp variant play
|
|
nice together. """
|
|
|
|
install_requires = []
|
|
if sys.version_info[0] == 2:
|
|
install_requires.append('argparse>=1.2.1')
|
|
if os.name == 'nt':
|
|
install_requires.append('pyreadline==2.0')
|
|
|
|
setup(
|
|
name=__appname__,
|
|
version=__version__,
|
|
install_requires=install_requires,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'hy = hy.cmdline:hy_main',
|
|
'hyc = hy.cmdline:hyc_main'
|
|
]
|
|
},
|
|
packages=[
|
|
'hy',
|
|
'hy.lex',
|
|
'hy.core',
|
|
'hy.models',
|
|
'hy.contrib',
|
|
],
|
|
package_data={
|
|
'hy.core': ['*.hy'],
|
|
},
|
|
author="Paul Tagliamonte",
|
|
author_email="tag@pault.ag",
|
|
long_description=long_description,
|
|
description='Lisp and Python love each other.',
|
|
license="Expat",
|
|
url="http://hy.pault.ag/",
|
|
platforms=['any'],
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: DFSG approved",
|
|
"License :: OSI Approved :: MIT License", # Really "Expat". Ugh.
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Lisp",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 2.6",
|
|
"Programming Language :: Python :: 2.7",
|
|
"Programming Language :: Python :: 3.2",
|
|
"Programming Language :: Python :: 3.3",
|
|
"Topic :: Software Development :: Code Generators",
|
|
"Topic :: Software Development :: Compilers",
|
|
"Topic :: Software Development :: Libraries",
|
|
]
|
|
)
|