1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
#!/usr/bin/env python
from setuptools import setup, find_packages
__AUTHOR__ = 'QuantStack dev team'
setup(
name='xeus-python-shell',
version='0.6.3',
description='The xeus-python core python logic.',
author=__AUTHOR__,
maintainer=__AUTHOR__,
url='https://github.com/jupyter-xeus/xeus-python-shell',
license='BSD 3-Clause',
keywords='python ipython xeus-python',
packages=find_packages(exclude=['test']),
python_requires='>=3.6',
install_requires=[
'debugpy>=1.1.0,<2'
],
extras_require={
'ipython': ['ipython>=7.21,<9'],
'wasm': ['pyjs>=1.1.0,<2.0.0'],
},
platforms=['any'],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)
|