-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 825 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
# read the contents of README file from ./nbrshell/README.md
#
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "Readme.md").read_text(encoding='utf-8')
setup(
name="nbrshell",
version="1.0.14",
description='Jupyter Notebook "cell magic" functions to remotely execute shell script typed in a notebook cell.',
long_description=long_description,
long_description_content_type='text/markdown',
author="A.Balbekov",
author_email="albert.y.balbekov@gmail.com",
packages=["nbrshell"], # same as name
install_requires=["paramiko"], # external packages
license="BSD License",
url="https://github.com/abalbekov/nbrshell",
keywords=['remote shell script execution','remote shell','shell','sqlplus']
)