-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from afshin/v0.9.1
v0.9.1
- Loading branch information
Showing
4 changed files
with
43 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,4 @@ | ||
[build-system] | ||
requires = ["flit"] | ||
build-backend = "flit.buildapi" | ||
requires = ["setuptools>=40.8.0", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.flit.metadata] | ||
module = "terminado" | ||
author = "Jupyter Development Team" | ||
author-email = "[email protected]" | ||
home-page = "https://github.com/jupyter/terminado" | ||
description-file = "README.rst" | ||
requires = [ | ||
"ptyprocess;os_name!='nt'", | ||
"pywinpty (>=0.5);os_name=='nt'", | ||
"tornado (>=4)", | ||
] | ||
requires-python=">=3.6" | ||
classifiers=[ | ||
"Environment :: Web Environment", | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Terminals :: Terminal Emulators/X Terminals", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
from setuptools import setup, find_packages | ||
import io | ||
|
||
with io.open('terminado/__init__.py', encoding='utf-8') as fid: | ||
for line in fid: | ||
if line.startswith('__version__'): | ||
version = line.strip().split()[-1][1:-1] | ||
break | ||
|
||
|
||
setup_args = dict( | ||
name = "terminado", | ||
version = version, | ||
author = "Jupyter Development Team", | ||
author_email = "[email protected]", | ||
url = "https://github.com/jupyter/terminado", | ||
packages = find_packages(), | ||
include_package_data = True, | ||
description = "Tornado websocket backend for the Xterm.js Javascript terminal emulator library.", | ||
long_description = open("README.rst").read(), | ||
long_description_content_type="txt/x-rst", | ||
install_requires = [ | ||
"ptyprocess;os_name!='nt'", | ||
"pywinpty (>=0.5);os_name=='nt'", | ||
"tornado (>=4)", | ||
], | ||
python_requires=">=3.6", | ||
classifiers=[ | ||
"Environment :: Web Environment", | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Terminals :: Terminal Emulators/X Terminals", | ||
] | ||
) | ||
|
||
|
||
if __name__ == '__main__': | ||
setup(**setup_args) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters