forked from jupyter/terminado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 911 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
25
26
from distutils.core import setup
with open('README.rst') as f:
readme = f.read()
setup(name="terminado",
version='0.6',
description="Terminals served to term.js using Tornado websockets",
long_description=readme,
author='Thomas Kluyver',
author_email="thomas@kluyver.me.uk",
url="https://github.com/takluyver/terminado",
packages=['terminado', 'terminado.tests'],
package_data={'terminado': ['uimod_embed.js',
'_static/*',
]
},
classifiers=[
"Environment :: Web Environment",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Terminals :: Terminal Emulators/X Terminals",
],
install_requires=['ptyprocess', 'tornado>=4'],
)