-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
62 lines (57 loc) · 1.96 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
import platform
from setuptools import setup, find_packages
with open("README.md") as readme_file:
readme = readme_file.read()
with open("HISTORY.md") as history_file:
history = history_file.read()
setup(
author="Bernhard Walter",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
description="A remote jupyter ipykernel via ssh",
install_requires=[
"tornado>=6.1.0,<=6.2.0",
"jupyter_client>=6.1.12,<6.2.0",
"jupyterlab>=3.0.0,<3.1.0",
"wexpect==3.3.2;platform_system=='Windows'",
"pexpect==4.8.0;platform_system!='Windows'",
"ssh_ipykernel_interrupt==1.1.2",
],
extras_require={
"dev": {"twine", "bumpversion", "black", "pylint", "wheel"},
},
data_files=[
(
"etc/jupyter/jupyter_server_config.d",
["ssh_ipykernel/ssh_ipykernel_interrupt/jupyter_server/ssh-ipykernel-interrupt.json"],
),
# (
# "etc/jupyter/jupyter_notebook_config.d",
# ["ssh_ipykernel/ssh_ipykernel_interrupt/jupyter_notebook/ssh-ipykernel-interrupt.json"],
# ),
],
license="MIT license",
long_description=readme + "\n\n" + history,
long_description_content_type="text/markdown",
# packages=find_packages(),
include_package_data=True,
keywords="ssh_ipykernel",
name="ssh_ipykernel",
packages=find_packages(exclude=["ssh_ipykernel_interrupt"]),
python_requires=">=3.5",
url="https://github.com/bernhard-42/ssh_ipykernel",
version="1.2.3",
zip_safe=False,
)