forked from jupyter/terminado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 820 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
setuptools.setup(
name="terminado",
version="0.9.0",
author="Jupyter Development Team",
author_email="[email protected]",
description="A websocket backend for the Xterm.js JavaScript terminal emulator library.",
url="https://github.com/jupyter/terminado",
packages=setuptools.find_packages(exclude=["doc", "demos", "terminado/_static"]),
classifiers=[
"Environment :: Web Environment",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Terminals :: Terminal Emulators/X Terminals",
],
license="MIT",
install_requires=[
"ptyprocess;os_name!='nt'",
"pywinpty (>=0.5);os_name=='nt'",
"tornado (>=4)",
]
)