hy/setup.py

91 lines
3.0 KiB
Python
Raw Normal View History

2013-03-01 04:27:20 +01:00
#!/usr/bin/env python
2018-01-01 16:38:33 +01:00
# Copyright 2018 the authors.
# This file is part of Hy, which is free software licensed under the Expat
# license. See the LICENSE.
2013-03-03 02:24:32 +01:00
import sys, os
2013-03-03 02:24:32 +01:00
from setuptools import find_packages, setup
from setuptools.command.install import install
import fastentrypoints # Monkey-patches setuptools.
from get_version import __version__
os.chdir(os.path.split(os.path.abspath(__file__))[0])
PKG = "hy"
2013-03-06 02:28:09 +01:00
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. """
2013-03-01 04:27:20 +01:00
class Install(install):
def run(self):
# Import each Hy module to ensure it's compiled.
import os, importlib
for dirpath, _, filenames in sorted(os.walk("hy")):
for filename in sorted(filenames):
if filename.endswith(".hy"):
importlib.import_module(
dirpath.replace("/", ".").replace("\\", ".") +
"." + filename[:-len(".hy")])
install.run(self)
2018-07-21 20:20:10 +02:00
install_requires = ['rply>=0.7.6', 'astor>=0.7.1', 'funcparserlib>=0.3.6', 'clint>=0.4']
if os.name == 'nt':
install_requires.append('pyreadline>=2.1')
2013-03-03 02:24:32 +01:00
ver = sys.version_info[0]
2013-03-01 04:27:20 +01:00
setup(
name=PKG,
2013-03-01 04:27:20 +01:00
version=__version__,
install_requires=install_requires,
cmdclass=dict(install=Install),
entry_points={
'console_scripts': [
'hy = hy.cmdline:hy_main',
'hy%d = hy.cmdline:hy_main' % ver,
2014-04-10 06:45:11 +02:00
'hyc = hy.cmdline:hyc_main',
'hyc%d = hy.cmdline:hyc_main' % ver,
2014-04-10 06:45:11 +02:00
'hy2py = hy.cmdline:hy2py_main',
'hy2py%d = hy.cmdline:hy2py_main' % ver,
]
},
packages=find_packages(exclude=['tests*']),
2013-07-07 01:40:47 +02:00
package_data={
'hy.contrib': ['*.hy', '__pycache__/*'],
'hy.core': ['*.hy', '__pycache__/*'],
'hy.extra': ['*.hy', '__pycache__/*'],
2013-07-07 01:40:47 +02:00
},
data_files=[
('get_version', ['get_version.py'])
],
2013-03-01 04:27:20 +01:00
author="Paul Tagliamonte",
2013-03-03 02:24:32 +01:00
author_email="tag@pault.ag",
2013-03-01 04:27:20 +01:00
long_description=long_description,
2013-03-03 02:24:32 +01:00
description='Lisp and Python love each other.',
2013-03-01 04:27:20 +01:00
license="Expat",
url="http://hylang.org/",
2013-03-10 22:41:35 +01:00
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",
2013-03-10 22:41:35 +01:00
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
2014-03-18 09:27:35 +01:00
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
2013-03-10 22:41:35 +01:00
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Libraries",
]
2013-03-01 04:27:20 +01:00
)