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