Skip to content

Commit

Permalink
Merge pull request #80 from afshin/v0.9.1
Browse files Browse the repository at this point in the history
v0.9.1
  • Loading branch information
afshin authored Sep 20, 2020
2 parents 4b1ec0a + 6c8dda9 commit 52e0fb8
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 22 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include LICENSE
23 changes: 2 additions & 21 deletions pyproject.toml
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",
]
39 changes: 39 additions & 0 deletions setup.py
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)
2 changes: 1 addition & 1 deletion terminado/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# Prevent a warning about no attached handlers in Python 2
logging.getLogger(__name__).addHandler(logging.NullHandler())

__version__ = '0.9.0'
__version__ = '0.9.1'

0 comments on commit 52e0fb8

Please sign in to comment.