reorganise python interface
This commit is contained in:
parent
6e7846e210
commit
d1e39368f4
8
packages/python/swig/MANIFEST.in
Normal file
8
packages/python/swig/MANIFEST.in
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
recursive-include yap4py *.dylib
|
||||||
|
recursive-include yap4py *.dll
|
||||||
|
recursive-include yap4py *.so
|
||||||
|
recursive-include yap4py/prolog *.yap
|
||||||
|
recursive-include yap4py *.yss
|
||||||
|
recursive-include yap4py/prolog *.pl
|
||||||
|
recursive-include yap4py/prolog *.r
|
||||||
|
recursive-include yap4py *.md
|
1
packages/python/yap_kernel/MANIFEST.in
Normal file
1
packages/python/yap_kernel/MANIFEST.in
Normal file
@ -0,0 +1 @@
|
|||||||
|
recursive-include yap_kernel/resources *.*
|
6
packages/python/yap_kernel/YAP_KERNEL.md
Normal file
6
packages/python/yap_kernel/YAP_KERNEL.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
A Jupyter Kernel for YAP (#yap_kernel)
|
||||||
|
=======================
|
||||||
|
|
||||||
|
This kernel supports interaction with YAP Prolog.
|
||||||
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
|||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
# the name of the package
|
# the name of the package
|
||||||
name = 'yap_kernel'
|
name = 'ipykernel'
|
||||||
|
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
# Minimal Python version sanity check
|
# Minimal Python version sanity check
|
||||||
@ -27,34 +27,50 @@ PY3 = (sys.version_info[0] >= 3)
|
|||||||
# get on with it
|
# get on with it
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
|
|
||||||
import os
|
|
||||||
from glob import glob
|
from glob import glob
|
||||||
|
import os
|
||||||
|
import shutil
|
||||||
|
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
packages = ["${CMAKE_CURRENT_SOURCE_DIR}"]
|
pjoin = os.path.join
|
||||||
|
here = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
pkg_root = pjoin(here, name)
|
||||||
|
|
||||||
|
packages = []
|
||||||
|
for d, _, _ in os.walk(pjoin(here, name)):
|
||||||
|
if os.path.exists(pjoin(d, '__init__.py')):
|
||||||
|
packages.append(d[len(here)+1:].replace(os.path.sep, '.'))
|
||||||
|
|
||||||
|
package_data = {
|
||||||
|
'ipykernel': ['resources/*.*'],
|
||||||
|
}
|
||||||
|
|
||||||
version_ns = {}
|
version_ns = {}
|
||||||
|
with open(pjoin(here, name, '_version.py')) as f:
|
||||||
|
exec(f.read(), {}, version_ns)
|
||||||
|
|
||||||
|
|
||||||
setup_args = dict(
|
setup_args = dict(
|
||||||
name = 'yap_kernel',
|
name = name,
|
||||||
version = '0.0.1',
|
version = version_ns['__version__'],
|
||||||
packages = ["yap_kernel"],
|
scripts = glob(pjoin('scripts', '*')),
|
||||||
package_dir = {'': '${CMAKE_SOURCE_DIR}/packages/python/yap_kernel' },
|
packages = packages,
|
||||||
description = "YAP Kernel for Jupyter",
|
py_modules = ['ipykernel_launcher'],
|
||||||
long_description="A simple YAP kernel for Jupyter/IPython",
|
package_data = package_data,
|
||||||
url="https://github.com/vscosta/yap-6.3",
|
description = "IPython Kernel for Jupyter",
|
||||||
author='Vitor Santos Costa, based on the the IPython',
|
author = 'IPython Development Team',
|
||||||
author_email='vsc@dcc.fc.up.pt',
|
author_email = 'ipython-dev@scipy.org',
|
||||||
|
url = 'http://ipython.org',
|
||||||
license = 'BSD',
|
license = 'BSD',
|
||||||
platforms = "Linux, Mac OS X, Windows",
|
platforms = "Linux, Mac OS X, Windows",
|
||||||
keywords = ['Interactive', 'Interpreter', 'Shell', 'Web'],
|
keywords = ['Interactive', 'Interpreter', 'Shell', 'Web'],
|
||||||
data_files=[('share/Yap/js', ['${CMAKE_SOURCE_DIR}/misc/editors/prolog.js'])],
|
|
||||||
classifiers = [
|
classifiers = [
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'Intended Audience :: System Administrators',
|
'Intended Audience :: System Administrators',
|
||||||
'Intended Audience :: Science/Research',
|
'Intended Audience :: Science/Research',
|
||||||
'License :: OSI Approved :: BSD License',
|
'License :: OSI Approved :: BSD License',
|
||||||
'Programming Language :: Prolog',
|
'Programming Language :: Python',
|
||||||
'Programming Language :: Python :: 2.7',
|
'Programming Language :: Python :: 2.7',
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
],
|
],
|
||||||
@ -71,8 +87,22 @@ install_requires = setuptools_args['install_requires'] = [
|
|||||||
'tornado>=4.0',
|
'tornado>=4.0',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
if any(a.startswith(('bdist', 'build', 'install')) for a in sys.argv):
|
||||||
|
from ipykernel.kernelspec import write_kernel_spec, make_ipkernel_cmd, KERNEL_NAME
|
||||||
|
|
||||||
|
argv = make_ipkernel_cmd(executable='python')
|
||||||
|
dest = os.path.join(here, 'data_kernelspec')
|
||||||
|
if os.path.exists(dest):
|
||||||
|
shutil.rmtree(dest)
|
||||||
|
write_kernel_spec(dest, overrides={'argv': argv})
|
||||||
|
|
||||||
|
setup_args['data_files'] = [
|
||||||
|
(pjoin('share', 'jupyter', 'kernels', KERNEL_NAME), glob(pjoin(dest, '*'))),
|
||||||
|
]
|
||||||
|
|
||||||
extras_require = setuptools_args['extras_require'] = {
|
extras_require = setuptools_args['extras_require'] = {
|
||||||
'test:python_version=="2.7"': ['mock', 'nose_warnings_filters'],
|
'test:python_version=="2.7"': ['mock'],
|
||||||
|
'test': ['nose_warnings_filters', 'nose-timer'],
|
||||||
}
|
}
|
||||||
|
|
||||||
if 'setuptools' in sys.modules:
|
if 'setuptools' in sys.modules:
|
113
packages/python/yap_kernel/setup.py.in
Normal file
113
packages/python/yap_kernel/setup.py.in
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# coding: utf-8
|
||||||
|
|
||||||
|
# Copyright (c) IPython Development Team.
|
||||||
|
# Distributed under the terms of the Modified BSD License.
|
||||||
|
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
|
# the name of the package
|
||||||
|
name = 'yap_kernel'
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
# Minimal Python version sanity check
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
import sys
|
||||||
|
|
||||||
|
v = sys.version_info
|
||||||
|
if v[:2] < (2,7) or (v[0] >= 3 and v[:2] < (3,3)):
|
||||||
|
error = "ERROR: %s requires Python version 2.7 or 3.3 or above." % name
|
||||||
|
print(error, file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
PY3 = (sys.version_info[0] >= 3)
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
# get on with it
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
from glob import glob
|
||||||
|
import os
|
||||||
|
import shutil
|
||||||
|
|
||||||
|
from distutils.core import setup
|
||||||
|
|
||||||
|
pjoin = os.path.join
|
||||||
|
here = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
pkg_root = pjoin(here, name)
|
||||||
|
|
||||||
|
packages = []
|
||||||
|
for d, _, _ in os.walk(pjoin(here, name)):
|
||||||
|
if os.path.exists(pjoin(d, '__init__.py')):
|
||||||
|
packages.append(d[len(here)+1:].replace(os.path.sep, '.'))
|
||||||
|
|
||||||
|
package_data = {
|
||||||
|
'ipykernel': ['resources/*.*'],
|
||||||
|
}
|
||||||
|
|
||||||
|
version_ns = {}
|
||||||
|
with open(pjoin(here, name, '_version.py')) as f:
|
||||||
|
exec(f.read(), {}, version_ns)
|
||||||
|
|
||||||
|
|
||||||
|
setup_args = dict(
|
||||||
|
name = name,
|
||||||
|
version = version_ns['__version__'],
|
||||||
|
scripts = glob(pjoin('scripts', '*')),
|
||||||
|
packages = packages,
|
||||||
|
package_dir = {'':'${CMAKE_CURRENT_SOURCE_DIR}'},
|
||||||
|
py_modules = ['ipykernel_launcher'],
|
||||||
|
package_data = package_data,
|
||||||
|
description = "IPython Kernel for Jupyter",
|
||||||
|
author = 'IPython Development Team',
|
||||||
|
author_email = 'ipython-dev@scipy.org',
|
||||||
|
url = 'http://ipython.org',
|
||||||
|
license = 'BSD',
|
||||||
|
platforms = "Linux, Mac OS X, Windows",
|
||||||
|
keywords = ['Interactive', 'Interpreter', 'Shell', 'Web'],
|
||||||
|
classifiers = [
|
||||||
|
'Intended Audience :: Developers',
|
||||||
|
'Intended Audience :: System Administrators',
|
||||||
|
'Intended Audience :: Science/Research',
|
||||||
|
'License :: OSI Approved :: BSD License',
|
||||||
|
'Programming Language :: Python',
|
||||||
|
'Programming Language :: Python :: 2.7',
|
||||||
|
'Programming Language :: Python :: 3',
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
if 'develop' in sys.argv or any(a.startswith('bdist') for a in sys.argv):
|
||||||
|
import setuptools
|
||||||
|
|
||||||
|
setuptools_args = {}
|
||||||
|
install_requires = setuptools_args['install_requires'] = [
|
||||||
|
'ipython>=4.0.0',
|
||||||
|
'traitlets>=4.1.0',
|
||||||
|
'jupyter_client',
|
||||||
|
'tornado>=4.0',
|
||||||
|
]
|
||||||
|
|
||||||
|
if any(a.startswith(('bdist', 'build', 'install')) for a in sys.argv):
|
||||||
|
from ipykernel.kernelspec import write_kernel_spec, make_ipkernel_cmd, KERNEL_NAME
|
||||||
|
|
||||||
|
argv = make_ipkernel_cmd(executable='python')
|
||||||
|
dest = os.path.join(here, 'data_kernelspec')
|
||||||
|
if os.path.exists(dest):
|
||||||
|
shutil.rmtree(dest)
|
||||||
|
write_kernel_spec(dest, overrides={'argv': argv})
|
||||||
|
|
||||||
|
setup_args['data_files'] = [
|
||||||
|
(pjoin('share', 'jupyter', 'kernels', KERNEL_NAME), glob(pjoin(dest, '*'))),
|
||||||
|
]
|
||||||
|
|
||||||
|
extras_require = setuptools_args['extras_require'] = {
|
||||||
|
'test:python_version=="2.7"': ['mock'],
|
||||||
|
'test': ['nose_warnings_filters', 'nose-timer'],
|
||||||
|
}
|
||||||
|
|
||||||
|
if 'setuptools' in sys.modules:
|
||||||
|
setup_args.update(setuptools_args)
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
setup(**setup_args)
|
@ -1,10 +0,0 @@
|
|||||||
Metadata-Version: 1.0
|
|
||||||
Name: yapex
|
|
||||||
Version: 0.1
|
|
||||||
Summary: UNKNOWN
|
|
||||||
Home-page: UNKNOWN
|
|
||||||
Author: UNKNOWN
|
|
||||||
Author-email: UNKNOWN
|
|
||||||
License: UNKNOWN
|
|
||||||
Description: UNKNOWN
|
|
||||||
Platform: UNKNOWN
|
|
@ -1,12 +0,0 @@
|
|||||||
setup.py
|
|
||||||
/Users/vsc/github/yap-6.3/packages/python/pl2pl.c
|
|
||||||
/Users/vsc/github/yap-6.3/packages/python/pl2py.c
|
|
||||||
/Users/vsc/github/yap-6.3/packages/python/py2pl.c
|
|
||||||
/Users/vsc/github/yap-6.3/packages/python/pybips.c
|
|
||||||
/Users/vsc/github/yap-6.3/packages/python/pypreds.c
|
|
||||||
/Users/vsc/github/yap-6.3/packages/python/python.c
|
|
||||||
/Users/vsc/github/yap-6.3/packages/swig/python/yapex.py
|
|
||||||
/Users/vsc/github/yap-6.3/packages/swig/python/yapex.egg-info/PKG-INFO
|
|
||||||
/Users/vsc/github/yap-6.3/packages/swig/python/yapex.egg-info/SOURCES.txt
|
|
||||||
/Users/vsc/github/yap-6.3/packages/swig/python/yapex.egg-info/dependency_links.txt
|
|
||||||
/Users/vsc/github/yap-6.3/packages/swig/python/yapex.egg-info/top_level.txt
|
|
@ -1 +0,0 @@
|
|||||||
yapex
|
|
Reference in New Issue
Block a user